开发者

Guarantee TCP Packet Size

We use an embedded device to send packets from a serial port over a serial-to-Ethernet converter to a server. One manufacturer we use, Moxa, will always send the packets in the same manner which they are constructed. Meaning, if we construct a packet size of 255, it will always send the packet in a 255 length. The other manufacturer, Tibbo, if we send the packet size 255, it will break the packet up if it is greater than 128. This is the answer I received from the Tibbo engineers at the time:

"From what I understand and what the engineers said, even if the other devices provide you with the right packet size now does not guarantee that when implemented in other networks the same will happen. This is the reason why we feel that packet size based data transfer through TCP is not reliable as it was not the way TCP was designed to be used."

I understand that this may not be how TCP was designed to be used, but if I create a packet of 255 bytes and TCP allows it, then how is this outside of how TCP works? I understand that at some point the pack开发者_如何学JAVAet may get broken up but if the server is expecting a certain packet size and Moxa's offering does not have the same problem as the Tibbo device.

So, is it possible to guarantee a reasonable TCP packet size?


No. TCP is not a packet protocol, it is a stream protocol. It guarantees that the bytes you send will all arrive, and in the right order, but nothing else. In particular, TCP does not give you any kind of message or packet boundaries. If you want such things, they need to be implemented at a higher level by your protocol.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜