Help for this page

Select Code to Download


  1. or download this
    my $remote = IO::Socket::INET->new( Proto => 'tcp',
                     PeerAddr => $ADDRESS,
    ...
        print OUT $_;
    }
    close $remote;
    
  2. or download this
    $| = 1;
    $server = IO::Socket::INET->new( Proto    => 'tcp',
    ...
        }
        close $client;
    }