Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
with an IO::Select. It processes these requests (in their 1000s )and returns them print $soc $reply;$sock = new IO::Socket::INET ( LocalHost => $host, LocalPort=> $port, Proto=> 'tcp', Listen=> 5, Reuse => 1, );
) even though the requesting socket appears to be in order ( passes $sel->can_write and $sel->exist ) any thoughts?$sock = new IO::Socket::INET ( PeerAddr => $host, PeerPort => $peerport, Proto => 'tcp', );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(tye)Re: mevakesh (Socket Question)
by tye (Sage) on Apr 05, 2001 at 23:33 UTC |