I am using a loop to read message out from a c Berkeley socket but I am not able to detect when the socket is disconnected so I would accept a new connection. please help

while(true) {
            bzero(buffer,256);
            n = read(newsockfd,buffer,255);
            printf("%s\n",buffer);        
}
link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

The only way you can detect that a socket is connected is by writing to it.

Getting a error on read()/recv() will indicate that the connection is broken, but not getting an error when reading doesn't mean that the connection is up.

You may be interested in reading this: http://lkml.indiana.edu/hypermail/linux/kernel/0106.1/1154.html

In addition, using TCP Keep Alive may help distinguish between inactive and broken connections (by sending something at regular intervals even if there's no data to be sent by the application).

(EDIT: Removed incorrect sentence as pointed out by @Damon, thanks.)

link|improve this answer
5  
Slight correction: "Reading 0 bytes may also simply mean that the remote party didn't have anything to send, without it being a problem necessarily" -- receiving 0 bytes means that the other end performed a clean shutdown of the connection. If the other end did not have anything to send, you get EAGAIN or EWOULDBLOCK if the socket is non-blocking, or it blocks until data arrives. One way of detecting that the connection is down would be registering EPOLLHUP and EPOLLRDHUP on an epoll. This is not 100% reliable, but will report orderly shutdowns, half-shutdowns, and missing keepalives. – Damon Jun 19 '11 at 18:18
Of course a long, long, long time may pass before a broken connection is detected with keepalives. Alas, that's the nature of an independent-packet based network. – Damon Jun 19 '11 at 18:20
feedback

Your Answer

 
or
required, but never shown

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