Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: How to find out whether socket is still connected?

by sgifford (Prior)
on Aug 10, 2006 at 15:47 UTC ( [id://566651]=note: print w/replies, xml ) Need Help??


in reply to How to find out whether socket is still connected?

There are two different situations here. The first is that your peer has gone away and the connection is shut down; either your system has received a TCP RST or FIN packet, or it tried to send data and didn't receive an ACK in time. In that case, Zaxo's suggestion to use select or eof will probably work.

The other situation is that your peer has disappeared, for example crashed, had a network failure, etc. In this case, there's no way to know that without sending some data. That's why many protocols have a NOOP operation or PING and PONG packets, as izut suggests. TCP keepalives are one option; on many systems you can set a system-wide timeout for TCP connections. If the connections are idle for that long, the kernel will send an empty packet to test the connection, and the connection will be shut down if it receives no response. Unfortunately I don't know of a way to send a 0-size probe packet from userspace.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://566651]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (7)
As of 2024-04-18 12:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found