back out the NSID as it doesn't appear to work with recursive servers as it should
This commit is contained in:
parent
bf3fb763ef
commit
a10a5610c7
17
dns.go
17
dns.go
@ -315,20 +315,21 @@ func (s *DNSServer) Query() *DNSResult {
|
|||||||
|
|
||||||
// add EDNS0 options to also query the service ID (NSID)
|
// add EDNS0 options to also query the service ID (NSID)
|
||||||
// pretty much copied verbatim from the library docs
|
// pretty much copied verbatim from the library docs
|
||||||
opts := new(dns.OPT)
|
// opts := new(dns.OPT)
|
||||||
opts.Hdr.Name = "."
|
// opts.Hdr.Name = "."
|
||||||
opts.Hdr.Rrtype = dns.TypeOPT
|
// opts.Hdr.Rrtype = dns.TypeOPT
|
||||||
|
|
||||||
// create the NSID option
|
// create the NSID option
|
||||||
ns_opt := new(dns.EDNS0_NSID)
|
// ns_opt := new(dns.EDNS0_NSID)
|
||||||
ns_opt.Code = dns.EDNS0NSID
|
// ns_opt.Code = dns.EDNS0NSID
|
||||||
ns_opt.Nsid = ""
|
// ns_opt.Nsid = ""
|
||||||
|
|
||||||
// add the NSID option to the opts RR
|
// add the NSID option to the opts RR
|
||||||
opts.Option = append(opts.Option, ns_opt)
|
// opts.Option = append(opts.Option, ns_opt)
|
||||||
|
|
||||||
// then add the opts RR to the query
|
// then add the opts RR to the query
|
||||||
msg.Extra = []dns.RR{opts}
|
// msg.SetEdns0(4096, false)
|
||||||
|
// msg.Extra = []dns.RR{opts}
|
||||||
|
|
||||||
// create a new DNS client
|
// create a new DNS client
|
||||||
client := new(dns.Client)
|
client := new(dns.Client)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user