Changeset 537

Show
Ignore:
Timestamp:
11/02/05 18:01:11 (8 years ago)
Author:
ahu
Message:

allow a '/' in domain names, which is sometimes used for classless in-addr.arpa delegations, reported by Volker Goetz

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pdns/pdns/packethandler.cc

    r518 r537  
    541541         (c >= 'A' && c <= 'Z') || 
    542542         (c >= '0' && c <= '9') || 
    543          c =='-' || c == '_' || c=='*' || c=='.')) 
     543         c =='-' || c == '_' || c=='*' || c=='.' || c=='/')) 
    544544      return false; 
    545545  }