Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    while (<$connection>) {
            print $_;
    }
    
  2. or download this
    use warnings;
    use strict;
    ...
    my $server = new IO::Socket::INET(Proto => "tcp",
                                      PeerAddr => "localhost",
                                      PeerPort =>25);