How can we make our own protocol over TCP?
Answers
Answered by
1
Answer:
As long as you can write a specification that defines the data you send through the TCP socket, you've got your own protocol. It's mostly about defining commands and payloads. You've got to serialize your command packet before putting them through TCP.
Similar questions