I read the article on Habré: https://habrahabr.ru/post/189332/ , but I can not figure out how to implement sending a request using TCP? All request to send one package or how?

  • one
    tcp is used to cut and deliver the data stream to a remote node. you don't have to think about tcp packets at all, sending data through it, you have a stream of bytes that you feed to a tcp connection. If this is broken up in tcp into packets, it’s a matter of MTU, it has the right to create at least a packet per byte, no difference. - etki
  • @etki Issue as an answer - Gikas

0