From e04e65fdfce2012d5de44905b6e124fbf5b0e6bd Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Wed, 27 May 2015 13:54:05 +0200 Subject: [PATCH] Shrink DNSProxy::ConntrackEntry from 112 to 104 bytes --- pdns/dnsproxy.hh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pdns/dnsproxy.hh b/pdns/dnsproxy.hh index c6eda47fa..3ae652ca8 100644 --- a/pdns/dnsproxy.hh +++ b/pdns/dnsproxy.hh @@ -75,15 +75,15 @@ private: int getID_locked(); struct ConntrackEntry { - uint16_t id; - ComboAddress remote; - int outsock; time_t created; + boost::optional anyLocal; string qname; - uint16_t qtype; DNSPacket* complete; string aname; - boost::optional anyLocal; + ComboAddress remote; + uint16_t id; + uint16_t qtype; + int outsock; }; typedef map map_t; -- 2.40.0