Board index » cppbuilder » Re: performance issue between TCP and UDP
Maynard Philbrook
![]() CBuilder Developer |
Re: performance issue between TCP and UDP2003-07-14 11:48:38 PM cppbuilder89 its true. UDP does not perform ACK of data received at the other end. in other words the os does not keep a stack of packet clusters to wait for an ACK to be returned thus the the packets are sent on their mary way and the socket system assumes nothing hence faster.. TCP will assure that the packets are received. Dumboo wrote: QuoteHi there, |