different structure alignment.

git-svn-id: https://unbound.nlnetlabs.nl/svn/trunk@1959 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
wouter 2010-01-18 11:24:28 +00:00
parent 206356d36c
commit 1a36f962b7
2 changed files with 5 additions and 2 deletions

View 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.
*/

View 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;
};
/**