Help for this page

Select Code to Download


  1. or download this
    # Perl client
    #!/usr/bin/perl -w
    ...
       Type      => SOCK_STREAM,
    
       ) or die "Couldn't create client : $!\n";
    
  2. or download this
    #Perl server
    #!/usr/bin/perl -w
    ...
    $response = <$client>;
    chomp $response;