Show
Ignore:
Timestamp:
04/11/06 12:23:47 (7 years ago)
Author:
ahu
Message:

add support for CERT record (RFC 2538) to MOADNSParser

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pdns/pdns/dnsrecords.hh

    r649 r674  
    194194  uint8_t d_algorithm, d_fptype; 
    195195  string d_fingerprint; 
     196}; 
     197 
     198class CERTRecordContent : public DNSRecordContent 
     199{ 
     200public: 
     201  includeboilerplate(CERT) 
     202 
     203private: 
     204  uint16_t d_type, d_tag; 
     205  uint8_t d_algorithm; 
     206  string d_certificate; 
    196207}; 
    197208