From c3a81a30e4224b48954e344c8d2ffe3dba685a2b Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Tue, 26 May 2015 12:12:07 +0200 Subject: [PATCH] Align TSIGRecordContent to 8-byte boundries --- pdns/dnsrecords.hh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pdns/dnsrecords.hh b/pdns/dnsrecords.hh index b9f65a2e93..7c8d92123a 100644 --- a/pdns/dnsrecords.hh +++ b/pdns/dnsrecords.hh @@ -141,13 +141,14 @@ public: includeboilerplate(TSIG) TSIGRecordContent() : DNSRecordContent(QType::TSIG) {} + uint16_t d_origID; + uint16_t d_fudge; + string d_algoName; string d_mac; string d_otherData; - uint64_t d_time; // 48 bits - uint16_t d_fudge; + uint64_t d_time; // uint16_t d_macSize; - uint16_t d_origID; uint16_t d_eRcode; // uint16_t d_otherLen }; -- 2.47.2