From 34a93774043101a5b87777a08867cbfb552d7d76 Mon Sep 17 00:00:00 2001 From: "Peter M. Goldstein" Date: Mon, 9 Mar 2015 13:51:11 -0700 Subject: [PATCH] Update the value of MaxMsgSize --- dns.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dns.go b/dns.go index 66e54c23..1c37a09d 100644 --- a/dns.go +++ b/dns.go @@ -9,7 +9,7 @@ const ( // MinMsgSize is the minimal size of a DNS packet. MinMsgSize = 512 // MaxMsgSize is the largest possible DNS packet. - MaxMsgSize = 65536 + MaxMsgSize = 65535 defaultTtl = 3600 // Default internal TTL. )