Help for this page

Select Code to Download


  1. or download this
    my $oSocket = IO::Socket::INET->new(PeerAddr => $HostName,            
    +                                               
    ...
    print  FH $sSend;
    while (<FH>) { print $_ };
    
  2. or download this
    ...
    local *FH = $oSocket;
    ...
    };
    close (FH);
    print $sRet;