2007fld has asked for the wisdom of the Perl Monks concerning the following question:
use IO::Socket;
my $sock = new IO::Socket::INET (
LocalHost => '12.34.56.78',
LocalPort => '1350',
Proto => 'tcp',
Listen => 10,
Reuse => 1,
);
die "Could not create socket: $!\n" unless $sock;
listen ($sock, 3);
close($sock);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: IO::Socket does not send FIN ack?
by ikegami (Patriarch) on Jul 30, 2010 at 00:13 UTC | |
|
Re: IO::Socket does not send FIN ack?
by roboticus (Chancellor) on Jul 30, 2010 at 00:09 UTC | |
by Anonymous Monk on Jul 30, 2010 at 01:49 UTC | |
by ikegami (Patriarch) on Jul 30, 2010 at 02:11 UTC | |
|
Re: IO::Socket does not send FIN ack?
by morgon (Priest) on Jul 30, 2010 at 00:10 UTC | |
|
Re: IO::Socket does not send FIN ack?
by rowdog (Curate) on Jul 31, 2010 at 14:32 UTC | |
|
Re: IO::Socket does not send FIN ack?
by 2007fld (Acolyte) on Jul 30, 2010 at 20:15 UTC |