Help for this page

Select Code to Download


  1. or download this
     Argument "^E" isn't numeric in integer eq (==) at ./try.pl line 40.
    
  2. or download this
        if ( $ver =~ /\x05/ && $nm ) {
    
  3. or download this
    my $x05 = sprintf "\x05"; # hex 05 as a raw character for ver test.
    
    ...
        }
    
    }
    
  4. or download this
    socket( SERVER, PF_INET, SOCK_STREAM, $proto ) ||
        die "Can't create socket: $!\n";
    ...
    
    listen( SERVER, SOMAXCONN ) ||
        die "Can't set max connections (listen): $!\n";