Perl 使用 fork 的 socket 服务器

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

#!/usr/bin/perl
use warnings;
use IO::Socket;
my $servsock = IO::Socket::INET->new( Listen => 5,LocalPort => 5000);
sub reap { 
   wait(); 
   $SIG{CHLD} = \&reap;
} # catch and handle children dying
$SIG{CHLD} = \&reap;
while($client = $servsock->accept()) {
    if ($pid = fork()) {
        close $servsock; 
    } else {
        close $client; #let the child deal with the client socket
    }
}