Hello all...
Is there any possiblility that a string sent with "tcp send hsock, buffer", could become fragmented so that ONE read with "tcp recv, hsock, 8000, buffer" would not receive the whole contents of the string ?
here is an example...
tcp send hsock, "mark smit"
tcp recv hsock, 8000, buff1
tcp recv hsock, 8000, buff2
buff1 = "mar"
buff2 = "k smit"
Could this happen ?
Cheers!
Is there any possiblility that a string sent with "tcp send hsock, buffer", could become fragmented so that ONE read with "tcp recv, hsock, 8000, buffer" would not receive the whole contents of the string ?
here is an example...
tcp send hsock, "mark smit"
tcp recv hsock, 8000, buff1
tcp recv hsock, 8000, buff2
buff1 = "mar"
buff2 = "k smit"
Could this happen ?
Cheers!
Comment