I think I understand the formal meaning of the option. In some legacy code I'm handling now, the option is used. The customer complains about RST as response to FIN from its side on connection close from its side.

I am not sure I can remove it safely, since I don't understand when it should be used.

Can you please give an example of when the option would be required?

link|improve this question

63% accept rate
feedback

2 Answers

The typical reason to turn off SO_LINGER is to avoid large numbers of connections sitting in the TIME_WAIT state, tying up all the available resources on a server.

When a TCP connection is closely cleanly, the end that initiated the close ("active close") ends up with the connection sitting in TIME_WAIT for several minutes. So if your protocol is one where the server initiates the connection close, and involves very large numbers of short-lived connections, then it might be susceptible to this problem.

link|improve this answer
I totally agree. I have seen a monitoring application which was initiating many (a few thousands short lived connections every X seconds), and it had probem to scale bigger (a thousand connection more). I don't know why, but the applicatoin was non responsive. Someone suggested the SO_LINGER = true, TIME_WAIT = 0 to free OS resources quickly, and after short investigation we did try this solution with very good results. The TIME_WAIT is no longer a problem for this app. – bartosz.r Mar 14 at 15:13
feedback

When linger is off the TCP stack doesn't wait for pending data to be sent before closing the connection. Data could be lost due to this but by setting linger to off you're accepting this and asking that the connection be reset straight away rather than closed gracefully. This causes an RST to be sent rather than the usual FIN.

link|improve this answer
I understand this. what I'm asking is for "realistic" example when we would like to use hard reset. – dimba Sep 21 '10 at 7:49
1  
Whenever you want to abort a connection; so if your protocol fails validation and you have a client talking rubbish at you all of a sudden you'd abort the connection with an RST, etc. – Len Holgate Sep 21 '10 at 8:37
feedback

Your Answer

 
or
required, but never shown

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