From: Pieter Lexis Date: Tue, 26 May 2015 07:41:51 +0000 (+0200) Subject: Shrink UeberBackend::handle from 48 to 40 bytes X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~77^2~4^2~32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5b09828427650aa5b0ffd71cbc6bf7d532cc7df3;p=pdns Shrink UeberBackend::handle from 48 to 40 bytes --- diff --git a/pdns/ueberbackend.hh b/pdns/ueberbackend.hh index 1c2ef20e9..f020e74b3 100644 --- a/pdns/ueberbackend.hh +++ b/pdns/ueberbackend.hh @@ -88,13 +88,14 @@ public: //! The current real backend, which is answering questions DNSBackend *d_hinterBackend; - //! Index of the current backend within the backends vector - unsigned int i; - //! DNSPacket who asked this question DNSPacket *pkt_p; string qname; + + //! Index of the current backend within the backends vector + unsigned int i; QType qtype; + private: static AtomicCounter instances;