Based on what I've read in these posts, a TCP RECV will not return until either of these conditions
If so, in order to receive a blob of data quickly, you must use a very short timeout value since you are required to wait that length of time for the last packet of data, even if you have received the previous N packets very quickly. Is that correct?
Thanks...
Garry
- the buffer is full
- it has waited the full timeout period.
If so, in order to receive a blob of data quickly, you must use a very short timeout value since you are required to wait that length of time for the last packet of data, even if you have received the previous N packets very quickly. Is that correct?
Thanks...
Garry
Comment