Help for this page

Select Code to Download


  1. or download this
        sub os_port {
            foreach (@_) {
    ...
            }
            $sock;
        }
    
  2. or download this
            while (<$sock>) {
                $sock_string = $_;
                last;
            }
    
  3. or download this
            $sock_string = <$sock>;