fix(dnssec): change EDNS0 UDP buffer size to 1232 as per the current recommendation
This commit is contained in:
@@ -29,7 +29,7 @@ func (w *iterativeWalker) resetStats() { w.st = ValidationStats{} }
|
||||
func (w *iterativeWalker) exchange(server, name string, qtype uint16) (*dns.Msg, error) {
|
||||
m := new(dns.Msg)
|
||||
m.SetQuestion(dns.Fqdn(name), qtype)
|
||||
m.SetEdns0(4096, true)
|
||||
m.SetEdns0(1232, true)
|
||||
m.RecursionDesired = false
|
||||
|
||||
if b, err := m.Pack(); err == nil {
|
||||
|
||||
Reference in New Issue
Block a user