diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2014-05-14 18:43:20 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2014-05-14 18:43:20 +0000 |
commit | f61d78fb42d2662643e7f0dbdcb97adbc2589dbc (patch) | |
tree | 9b915379eafaa12682f45d6cb1f41e94fcb12a36 /util/module.h | |
parent | 697291b66c481c617cf9875497e2189bc4a4b096 (diff) |
Diffstat (limited to 'util/module.h')
-rw-r--r-- | util/module.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/module.h b/util/module.h index 8fa4ec25960ae..3ec25524b03b0 100644 --- a/util/module.h +++ b/util/module.h @@ -186,7 +186,7 @@ struct module_env { /** random table to generate random numbers */ struct ub_randstate* rnd; /** time in seconds, converted to integer */ - uint32_t* now; + time_t* now; /** time in microseconds. Relatively recent. */ struct timeval* now_tv; /** is validation required for messages, controls client-facing @@ -309,7 +309,7 @@ struct module_qstate { /** 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; + time_t prefetch_leeway; }; /** |