Help for this page

Select Code to Download


  1. or download this
      sub IPsort {
        map inet_ntoa($_),
        IP_radix_sort
        map inet_aton($_),
        @_;
      }
    
  2. or download this
        sub byip { inet_ntoa($a) cmp inet_ntoa($b) }
    
        foreach (sort byip @ip_list) ...