vote up 2 vote down star
1

I have an application that receives relatively sparse traffic over TCP with no application-level responses. I believe the TCP stack is sending delayed ACKs (based on glancing at a network packet capture). What is the recommended way to disable delayed-ACK in the network stack for a single socket? I've looked at TCP_QUICKACK, but it seems that the stack will change it under my feet anyways.

This is running on a Linux 2.6 kernel, and I am not worried about portability.

flag

2 Answers

vote up 1 vote down

At which point does this happen? Do you mean SYN-ACKs, FIN-ACKs or what?

link|flag
I think he means plain ACKs -- "receives ... traffic", "no ... responses". Returning ACKs are normally delayed to include data which might be sent soon, but there is none in OP's case. – ephemient Oct 23 at 20:10
yes, this is in an established session, not a handshake. – Tom Oct 23 at 23:34
vote up 0 vote down

You could setsockopt(sockfd, IPPROTO_TCP, TCP_QUICKACK, (int[]){1}, sizeof(int)) after every recv you perform. It appears that TCP_QUICKACK is only reset when there is data being sent or received; if you're not sending any data, then it will only get reset when you receive data, in which case you can simply set it again.

You can check this in the 14th field of /proc/net/tcp; if it is not 1, ACKs should be sent immediately... if I'm reading the TCP code correctly. (I'm not an expert at this either.)

link|flag
I believe he has done that already based on his question and he says the value is being reset. – Nikolaos Oct 23 at 20:02
Setting TCP_QUICKACK immediately sends an ACK if there is anything that needs to be ACK'ed, so I think this is sufficient. – ephemient Oct 23 at 20:11
I am still `send()`ing on that socket. But as I said, I am not responding to messages I receive. I'll check out /proc/net/tcp. – Tom Oct 23 at 23:34

Your Answer

Get an OpenID
or

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