vote up 0 vote down star

I have an small server/client test program I am running over a radio link using TCP/IP and I noticed with wireshark that I am getting a lot of retransmits due to high latency. How do I increase the window my program waits for an ACK before attempting retransmission?

Update on OS: The server is running Linux, the Client is on Windows

flag

73% accept rate
What is the operating system? The mechanism likely varies between OS-es. – tsg Aug 5 at 10:36

3 Answers

vote up 1 vote down

In Linux, you can try playing with the TCP_WINDOW_CLAMP and the other options from http://lxr.linux.no/linux+v2.6.30/include/linux/tcp.h#L85 . They can be set by using setsockopt (man 3 setsockopt), I think.

link|flag
vote up 0 vote down

Definitely this question needs some clarification.
IMO, best solution should be to switch to asynchronous sockets. This way timeout handling is all yours.

link|flag
vote up 0 vote down

Windows and Linux both ask you to configure parameter values. You could do that either on the server side or on the client side .. So which ever method suits you try it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.