Update the value of MaxMsgSize

This commit is contained in:
Peter M. Goldstein 2015-03-09 13:51:11 -07:00
parent 12197b977e
commit 34a9377404
1 changed files with 1 additions and 1 deletions

2
dns.go
View File

@ -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.
)