in reply to Client still valid?

Are these IO::Socket objects? Assuming so, you can call $client->connected to check status. $client->send $msg, $opts if $client->connected(); Also, I think you should get SIGPIPE when the client disconnects, so a %SIG handler for that may be useful.

After Compline,
Zaxo

Replies are listed 'Best First'.
Re: Re: Client still valid?
by Anonymous Monk on Aug 05, 2003 at 00:45 UTC
    perfect. Where can I find a complete listing of the options available on the $client object?

      The $client object is documented in 'perldoc IO::Socket'. It also inherits methods from IO::Handle.

      After Compline,
      Zaxo