No modified codes have been submitted for this Microcode.
Introspection
12. March 2009
12. March 2009
#!/usr/bin/perl
use IO::Socket::INET;
$pid = fork();
if($pid==0){
$myself = IO::Socket::INET->new(Proto=>'tcp', LocalPort=>4321, Reuse=>1, Listen=>5);
while($conn = $myself->accept()){
}
}else{
sleep(5);
$specter = IO::Socket::INET->new(Proto=>'tcp', PeerAddr=>'localhost', PeerPort=>4321);
waitpid($pid,0);
}