Changeset 1259
- Timestamp:
- 08/24/08 17:37:11 (2 years ago)
- Location:
- trunk/pdns/pdns
- Files:
-
- 2 modified
-
dnsrecords.cc (modified) (1 diff)
-
dnsrecords.hh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/pdns/dnsrecords.cc
r1232 r1259 21 21 22 22 boilerplate_conv(A, ns_t_a, conv.xfrIP(d_ip)); 23 24 ARecordContent::ARecordContent(uint32_t ip) : DNSRecordContent(ns_t_a) 25 { 26 d_ip = ip; 27 } 23 28 24 29 uint32_t ARecordContent::getIP() const -
trunk/pdns/pdns/dnsrecords.hh
r1232 r1259 55 55 { 56 56 public: 57 explicit ARecordContent(uint32_t ip); 57 58 includeboilerplate(A); 58 59 void doRecordCheck(const DNSRecord& dr);