Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^3: Sockets, eval , and DIE

by andal (Hermit)
on Apr 22, 2014 at 06:27 UTC ( [id://1083110]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Sockets, eval , and DIE
in thread Sockets, eval , and DIE

Alternatively, one can use "send" instead of "syswrite". Like this

use Socket qw(MSG_NOSIGNAL); use Errno; my $out = send($sock, $data, MSG_NOSIGNAL); unless(defined $out) { if($!{EPIPE}) { warn("Got broken pipe\n"); } }
In this case SIGPIPE is not provided, only EPIPE system error happens, which allows handling of all errors in single place.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-23 22:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found