From: Pieter Lexis Date: Tue, 26 May 2015 09:08:27 +0000 (+0200) Subject: Shrink TSIGRecordContent form 80 to 72 bytes X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~77^2~4^2~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=483d2f10f1eb13d9d8286394681acb8b35da0301;p=thirdparty%2Fpdns.git Shrink TSIGRecordContent form 80 to 72 bytes --- diff --git a/pdns/dnsrecords.hh b/pdns/dnsrecords.hh index 1a343629d7..5daa6c2d91 100644 --- a/pdns/dnsrecords.hh +++ b/pdns/dnsrecords.hh @@ -142,14 +142,14 @@ public: TSIGRecordContent() : DNSRecordContent(QType::TSIG) {} string d_algoName; + string d_mac; + string d_otherData; uint64_t d_time; // 48 bits uint16_t d_fudge; // uint16_t d_macSize; - string d_mac; uint16_t d_origID; uint16_t d_eRcode; // uint16_t d_otherLen - string d_otherData; };