Show
Ignore:
Timestamp:
10/23/05 16:53:11 (8 years ago)
Author:
ahu
Message:

add beginning of next generation zoneparser
add error checking to socket close - there are probably some duplicate closes around, causing havoc
add PTR to records that are propely parsed by the pdns_recursor
teach pdns_recursor to read hints from a zone file, "official" root is still in source
fix some --trace output that would look for .-terminated qnames
document hints-file

Files:
1 modified

Legend:

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

    r520 r521  
    589589        string::size_type pos=k->content.find_first_not_of(" \t0123456789"); // chop off the priority 
    590590        if(pos!=string::npos) 
    591           doResolve(k->content.substr(pos),QType(QType::A),addit,1,beenthere); 
     591          doResolve(toLowerCanonic(k->content.substr(pos)), QType(QType::A),addit,1,beenthere); 
    592592        else 
    593           doResolve(k->content,QType(QType::A),addit,1,beenthere); 
     593          doResolve(toLowerCanonic(k->content), QType(QType::A),addit,1,beenthere); 
    594594      } 
    595595      else