From: Pieter Lexis Date: Wed, 27 May 2015 11:39:15 +0000 (+0200) Subject: Align PowerDNSLua to 8-byte boundries X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~77^2~4^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52a89667dca13b61b75fcda196d689b0894fd2a1;p=thirdparty%2Fpdns.git Align PowerDNSLua to 8-byte boundries --- diff --git a/pdns/lua-pdns.hh b/pdns/lua-pdns.hh index beac27762d..81c099ec41 100644 --- a/pdns/lua-pdns.hh +++ b/pdns/lua-pdns.hh @@ -26,9 +26,9 @@ protected: // FIXME? bool passthrough(const string& func, const ComboAddress& remote,const ComboAddress& local, const string& query, const QType& qtype, vector& ret, int& res, bool* variable); bool getFromTable(const std::string& key, std::string& value); bool getFromTable(const std::string& key, uint32_t& value); + ComboAddress d_local; bool d_failed; bool d_variable; - ComboAddress d_local; }; // enum for policy decisions, used by both auth and recursor. Not all values supported everywhere. namespace PolicyDecision { enum returnTypes { PASS=-1, DROP=-2, TRUNCATE=-3 }; };