If I'm running a simple server and have accept()ed a connection from a client, what is the best way to tell when the client has disconnected? Normally, the client in this case I supposed to send a close command, but what if it DCs manually? How can I tell or handle this?
|
feedback
|
|
select (with the read mask set) will return with the handle signalled, but when you use ioctl* to check the number of bytes pending to be read, it will be zero. This is a sign that the socket has been disconnected. There is a great discussion on the various methods of checking that the client has disconnected here. * for Windows use ioctlsocket. | ||||
|
feedback
|
|
Look here (for the worst case scenarios): http://tldp.org/HOWTO/TCP-Keepalive-HOWTO/overview.html (Checking for dead peers) | |||
|
feedback
|
|
To expand on this a bit more: If you are running a server you either need to use TCP_KEEPALIVE to monitor the client connections, or do something similar yourself, or have knowledge about the data/protocol that you are running over the connection. Basically, if the connection gets killed (i.e. not properly closed) then the server won't notice until it tries to write something to the client, which is what the keepalive achieves for you. Alternatively, if you know the protocol better, you could just disconnect on an inactivity timeout anyway. | |||
|
feedback
|
|
If you're using overlapped (i.e. asynchronous) I/O with completion routines or completion ports, you will be notified immediately (assuming you have an outstanding read) when the client side closes the connection. | |||
|
feedback
|
| |||
feedback
|
|
I have to deal with a similar situation in the code I wrote and maintain at work. In my situation I have a bunch of clients that nominally stay permanently connected to the server. If they are going to disconnect they are supposed to send a disconnect message. However, they occasionally crash and the connection is lost without sending the disconnect message. When this happen the socket always triggers. I'm using a blocking select and this trigger activates the message processing code. The messages normally being passed along the socket follow a known design I designed it) that always starts out by transmitting the length of the message in bytes (they are of variable length) as a 32-bit integer. So when processing a message I start by reading out this byte from the socket. For a good message, this is a positive number telling me the length of the message. When the socket is closed from the other end this value always ends up being -1. I simply check for this and do the appropriate clean-up on the server side. I would recommend doing something similar. If you know what you should be getting, read out the first bit of the message from the triggered socket and make sure it is not garbage. If it is, handle appropriately. Disclaimer: We are running Linux and compiling with gcc. This is a custom application running on dedicated hardware. I would also add that this is not the behavior described by the socket man pages but is what happens on our systems in reality. | |||
|
feedback
|
|
It's really easy to do relyable and not messy :D
| |||
|
feedback
|
|
Don't rely on any other advice but implement a ping or better put dead-man switch protocol.. | |||
|
feedback
|
|
apr library from apache project is a good reference for this problem. It use poll with a timeout value to check if the other side connection is broken or not. | |||
|
feedback
|
|
I have a very similar problem: We want to detect disconnect quickly, and we therefor set keepalive to 10 seconds, with connection dropping if 3 consecutive packets are dropped. However tcp keepalive is only used when there is no data packet waiting. We have not found a way yet to detect a disconnected client if we sent something, as the system waits much longer for an ack of the data packet. Is there a way to configure (at least under linux) how long data acks are wait for? | |||
|
feedback
|