Changeset 305 for branches/stable


Ignore:
Timestamp:
01/19/06 12:15:52 (18 years ago)
Author:
Kris Deugau
Message:

/branches/stable

Remove private 10.* and 192.168.* subnets from counts in freespace.pl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/cgi-bin/freespace.pl

    r158 r305  
    2929while (@data = $sth->fetchrow_array) {
    3030  # cidr,maskbits,city,routed
     31  next if $data[0] =~ /^10\./;
     32  #next if $data[0] =~ /^172\.16\./;
     33  next if $data[0] =~ /^192\.168\./;
    3134  $tnumfree++;
    3235  $numfree{"$data[1]"}++;
Note: See TracChangeset for help on using the changeset viewer.