Help for this page

Select Code to Download


  1. or download this
    sub get_local_ip {
       my $sock = IO::Socket::INET->new(
    ...
    }
    
    my $localip = get_local_ip();
    
  2. or download this
    sub get_local_ip {
      my $host = shift;
    ...
    }
    
    my $localip = get_local_ip($mrtgc2, 5432);