From: Pieter Lexis Date: Tue, 26 May 2015 07:21:19 +0000 (+0200) Subject: Shrink PacketReader from 24 to 16 bytes X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~77^2~4^2~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da7311a76f154a5c24735a59157fdcbc57b9f861;p=thirdparty%2Fpdns.git Shrink PacketReader from 24 to 16 bytes --- diff --git a/pdns/dnsparser.hh b/pdns/dnsparser.hh index cc6de7673f..eff94e4e9c 100644 --- a/pdns/dnsparser.hh +++ b/pdns/dnsparser.hh @@ -150,6 +150,7 @@ public: private: uint16_t d_startrecordpos; // needed for getBlob later on uint16_t d_recordlen; // ditto + uint16_t not_used; // Alighns the whole class on 8-byte boundries const vector& d_content; };