]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
different structure alignment.
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 18 Jan 2010 11:24:28 +0000 (11:24 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 18 Jan 2010 11:24:28 +0000 (11:24 +0000)
git-svn-id: file:///svn/unbound/trunk@1959 be551aaa-1e26-0410-a405-d3ace91eadb9

util/data/msgreply.h
util/module.h

index 6210f079cd28fe71f29cc846e3621293c1241d01..a8d59181f5f9ac1571607675a4675a3841d809a5 100644 (file)
@@ -129,6 +129,9 @@ struct reply_info {
         */
        uint32_t prefetch_ttl;
 
+       /** 32 bit padding to pad struct member alignment to 64 bits. */
+       uint32_t padding;
+
        /**
         * The security status from DNSSEC validation of this message.
         */
index d74a500c31e9841267f54567704e79f024fa1e66..f2ff7b1be99ccda616198df51dc396871d67aeea 100644 (file)
@@ -301,8 +301,6 @@ struct module_qstate {
        struct regional* region;
        /** failure reason information if val-log-level is high */
        struct config_strlist* errinf;
-       /** how many seconds before expiry is this prefetched (0 if not) */
-       uint32_t prefetch_leeway;
 
        /** which module is executing */
        int curmod;
@@ -314,6 +312,8 @@ struct module_qstate {
        struct module_env* env;
        /** mesh related information for this query */
        struct mesh_state* mesh_info;
+       /** how many seconds before expiry is this prefetched (0 if not) */
+       uint32_t prefetch_leeway;
 };
 
 /**