Show
Ignore:
Timestamp:
10/27/05 00:09:46 (8 years ago)
Author:
ahu
Message:

update TODO list
some cosmetic changes in pdns_recursor
make dnsreplay_mindex compile again
improve 'trailing garbage' error
teach zone content input/output code about spaces in labels

Files:
1 modified

Legend:

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

    r518 r524  
    205205     
    206206    if(pr.d_pos!=contentlen) { 
    207       throw MOADNSException("Packet has trailing garbage"); 
     207      throw MOADNSException("Packet ("+d_qname+"|#"+lexical_cast<string>(d_qtype)+") has trailing garbage ("+ lexical_cast<string>(pr.d_pos) + " < " +  
     208                            lexical_cast<string>(contentlen) + ")"); 
    208209    } 
    209210  }