Changeset 674
- Timestamp:
- 04/11/06 12:23:47 (7 years ago)
- Location:
- trunk/pdns/pdns
- Files:
-
- 2 modified
-
dnsrecords.cc (modified) (4 diffs)
-
dnsrecords.hh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/pdns/dnsrecords.cc
r670 r674 1 1 /* 2 2 PowerDNS Versatile Database Driven Nameserver 3 Copyright (C) 2005 PowerDNS.COM BV3 Copyright (C) 2005 - 2006 PowerDNS.COM BV 4 4 5 5 This program is free software; you can redistribute it and/or modify … … 241 241 ); 242 242 243 boilerplate_conv(CERT, 37, 244 conv.xfr16BitInt(d_type); 245 conv.xfr16BitInt(d_tag); 246 conv.xfr8BitInt(d_algorithm); 247 conv.xfrBlob(d_certificate); 248 ) 243 249 244 250 boilerplate_conv(DS, 43, … … 248 254 conv.xfrHexBlob(d_digest); 249 255 ) 250 251 256 252 257 boilerplate_conv(SSHFP, 44, … … 298 303 DSRecordContent::report(); 299 304 SSHFPRecordContent::report(); 305 CERTRecordContent::report(); 300 306 NSECRecordContent::report(); 301 307 OPTRecordContent::report(); -
trunk/pdns/pdns/dnsrecords.hh
r649 r674 194 194 uint8_t d_algorithm, d_fptype; 195 195 string d_fingerprint; 196 }; 197 198 class CERTRecordContent : public DNSRecordContent 199 { 200 public: 201 includeboilerplate(CERT) 202 203 private: 204 uint16_t d_type, d_tag; 205 uint8_t d_algorithm; 206 string d_certificate; 196 207 }; 197 208