开发者

How to know when you finish receiving a TCP stream?

I'm not sure how to tell in TCP when the sender finished sending me the information.

For example if A needs to send 200 bytes to B, how will B know that A finished sending, and that the information is ready to be transferred to the application layer?

There's the F开发者_运维技巧IN flag, but as far as I know it's only there to symbolizes that your going to close the connection.

Thanks.


TCP has no obligation to tell the receiver when the sender has finished sending data on the connection. It can't because it has no understanding of the higher level protocol data it's transporting.

However it will tell you if the connection closes (then you'll see a FIN, FIN-ACK) sequence in a network trace. From a programming perspective, assuming that you're using C the function recv will return 0 when the peer closes the connection.


You define a protocol such as first sending a 4 byte int in a specified byte order which indicates how many bytes will follow in the message body.


If you're on unix/linux, select and poll can signal you that the other end finished transfer (did a half/full close). read will also return with an error if you've read all the data and want to read from a closed connection.

If you do multiple transfers on one connection and want to signal the end of a "package" you have to build that into your protocol.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜