]> granicus.if.org Git - pdns/commitdiff
Shrink BB2DomainInfo from 248 to 232 bytes
authorPieter Lexis <pieter.lexis@powerdns.com>
Wed, 27 May 2015 09:50:01 +0000 (11:50 +0200)
committerPieter Lexis <pieter.lexis@powerdns.com>
Fri, 19 Jun 2015 20:51:48 +0000 (22:51 +0200)
modules/bindbackend/bindbackend2.hh

index 6c598cc2c6692ad487c8d6074191c45ebbf8af20..a9b0c0c4f32672c6d3398173024b7a3eefba2cab 100644 (file)
@@ -153,20 +153,19 @@ public:
   //! configure how often this domain should be checked for changes (on disk)
   void setCheckInterval(time_t seconds);
 
-  bool d_loaded;  //!< if a domain is loaded
-  string d_status; //!< message describing status of a domain, for human consumption
-  mutable bool d_checknow; //!< if this domain has been flagged for a check
-  time_t d_ctime;  //!< last known ctime of the file on disk
   string d_name;   //!< actual name of the domain
   string d_filename; //!< full absolute filename of the zone on disk
-  unsigned int d_id;  //!< internal id of the domain
-  time_t d_lastcheck; //!< last time domain was checked for freshness
+  string d_status; //!< message describing status of a domain, for human consumption
   vector<string> d_masters;     //!< IP address of the master of this domain
   set<string> d_also_notify; //!< IP list of hosts to also notify
-
+  LookButDontTouch<recordstorage_t> d_records;  //!< the actual records belonging to this domain
+  time_t d_ctime;  //!< last known ctime of the file on disk
+  time_t d_lastcheck; //!< last time domain was checked for freshness
   uint32_t d_lastnotified; //!< Last serial number we notified our slaves of
+  unsigned int d_id;  //!< internal id of the domain
+  mutable bool d_checknow; //!< if this domain has been flagged for a check
+  bool d_loaded;  //!< if a domain is loaded
 
-  LookButDontTouch<recordstorage_t> d_records;  //!< the actual records belonging to this domain
 private:
   time_t getCtime();
   time_t d_checkinterval;