Changeset 635


Ignore:
Timestamp:
05/15/14 15:36:30 (10 years ago)
Author:
Kris Deugau
Message:

/trunk

Tweak an advisory comment, add two others

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/DNSDB.pm

    r634 r635  
    51455145        $val = $rr->address;
    51465146      } elsif ($type eq 'NS') {
    5147 # hmm.  should we warn here if subdomain NS'es are left alone?
     5147# hmm.  should we warn here if subdomain NS'es are left alone?  OTOH, those should rarely be rewritten anyway.
    51485148        next if ($args{rwns} && ($host eq $zone));
    51495149        $val = $rr->nsdname;
     
    58365836      my $ip = $_->addr;
    58375837      # make as if we split the non-octet-aligned block into octet-aligned blocks as with SOA
    5838       next if $ip =~ /\.(0|255)$/;
    5839       next if $$recflags{$ip};
     5838      next if $ip =~ /\.(0|255)$/; # && $self->{skip_net_0}
     5839      next if $$recflags{$ip}; # && $self->{skip_bcast_255}
    58405840      $$recflags{$ip}++;
    58415841      next if $hpat eq '%blank%';       # Allows blanking a subnet so no records are published.
Note: See TracChangeset for help on using the changeset viewer.