Changeset 477 for trunk/pdns/pdns/dnsbackend.hh
- Timestamp:
- 09/03/05 20:15:37 (8 years ago)
- Files:
-
- 1 modified
-
trunk/pdns/pdns/dnsbackend.hh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/pdns/dnsbackend.hh
r326 r477 46 46 struct DomainInfo 47 47 { 48 u _int32_t id;48 uint32_t id; 49 49 string zone; 50 50 string master; 51 u _int32_t notified_serial;52 u _int32_t serial;51 uint32_t notified_serial; 52 uint32_t serial; 53 53 time_t last_check; 54 54 enum {Master,Slave,Native} kind; … … 146 146 147 147 //! Called by PowerDNS to inform a backend that a domain has been checked for freshness 148 virtual void setFresh(u _int32_t domain_id)148 virtual void setFresh(uint32_t domain_id) 149 149 { 150 150 151 151 } 152 152 //! Called by PowerDNS to inform a backend that the changes in the domain have been reported to slaves 153 virtual void setNotified(u _int32_t id, u_int32_t serial)153 virtual void setNotified(uint32_t id, uint32_t serial) 154 154 { 155 155 }