]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Align PacketCache to 8-byte boundries
authorPieter Lexis <pieter.lexis@powerdns.com>
Tue, 26 May 2015 11:11:36 +0000 (13:11 +0200)
committerPieter Lexis <pieter.lexis@powerdns.com>
Fri, 19 Jun 2015 20:51:48 +0000 (22:51 +0200)
pdns/packetcache.hh

index 33bec4916e322cffb08f26ce636ae5e86a0cfc56..1646f8e77b6c024d4f002b8eea0bdb72b67019b0 100644 (file)
@@ -129,14 +129,14 @@ private:
     return d_maps[burtle((const unsigned char*)qname.c_str(), qname.length(), 0) % d_maps.size()];
   }
 
-
   AtomicCounter d_ops;
-  int d_ttl;
-  int d_recursivettl;
-  bool d_doRecursion;
   AtomicCounter *d_statnumhit;
   AtomicCounter *d_statnummiss;
   AtomicCounter *d_statnumentries;
+
+  int d_ttl;
+  int d_recursivettl;
+  bool d_doRecursion;
 };