From 3b59bf559cab466a73d900567cd26899bdede406 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Sat, 30 Apr 2005 19:38:31 +0000 Subject: [PATCH] ttl is a uint32_t --- src/include/dns.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/dns.h b/src/include/dns.h index cd26a961..075a9413 100644 --- a/src/include/dns.h +++ b/src/include/dns.h @@ -64,7 +64,7 @@ struct dns_query { struct dns_rr_info { uint16_t type; uint16_t class; - uint16_t ttl; + uint32_t ttl; uint16_t rdlength; } __attribute__ (( packed ));