Socket::unpack_sockaddr_in error and fixes
Michael Fung
mike at 3open.org
Wed Oct 22 04:56:15 CEST 2014
On 10/22/2014 2:45 AM, Marc Lehmann wrote:
> Are you sure it's reallly applied and the file is really the file being used?
>
> Maybe something went wrong applying the patch - you can try the CVS
> snapshot for AnyEvent, which supposedly has this issue fixed (and works
> for me):
>
> cvs -z3 -d :pserver:anonymous at cvs.schmorp.de/schmorpforge co AnyEvent
Hi Marc,
I double checked, the patch is really in place. Anyway, I will try your
suggestion and see what happens.
BTW, if I want to terminate the program when EV died (e.g. due to the
Socket bug), is the following the right think to do? Will there be case
"exit 1" will fail?
[code]
# terminate on EV error
$EV::DIED = sub {
AE::log fatal => "EV fatal error:" . $@;
exit 1;
};
[/code]
Thanks,
Michael
More information about the anyevent
mailing list