Thank you for your comments.
The problem of stuck together is a mistake of me. What I meant is that packets are sticked together.
Exampke, server sends packet 1, packet 2 and packet 3.
These come in at the client side as one packet. My question is, can we set something so packets are never sticked together and always come in as packet 1 , packet 2 and packet 3.
UDP is indeed better for this. We have some projects running smooth with this technique.
However, our client insisted that TCP/IP is used so no firewall configuration like NAT, ... is necessary....
Main Topics
Browse All Topics





by: grbladesPosted on 2006-10-12 at 04:44:34ID: 17714303
> - is there any way that we can infuence TCP/IP to not wait on the ACKs so our server application is not blocking free/ t_TCP WindowSize Adjustment andFlowCon trol.htm
It is not possible to turn off the waiting of ACK's since this would require an infinite amount of memory in order to store the outbound data incase a retransmission is required. However you can increase the buffer size so that more data can be sent before an ACK is received. This is known as the TCP Window and there is also a feature called TCP Sliding Window which measures latency and packet loss and adjusts the window size automatically. For more info have a look at http://www.tcpipguide.com/
> - can we set an option so packets are NEVER stuck together
Packets will never get stuck. It is probably a bug in the droopy eyes software.
> - and off course any advice on any level is welcome
It sounds as if you should be using the UDP protocol instead of TCP.