From a10a5610c7b34d6aa145c48e2c0e8476a4e2dc78 Mon Sep 17 00:00:00 2001 From: Simon Marsh Date: Fri, 21 Jun 2019 21:25:41 +0100 Subject: [PATCH] back out the NSID as it doesn't appear to work with recursive servers as it should --- dns.go | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/dns.go b/dns.go index eefe95b..c13735b 100644 --- a/dns.go +++ b/dns.go @@ -315,20 +315,21 @@ func (s *DNSServer) Query() *DNSResult { // add EDNS0 options to also query the service ID (NSID) // pretty much copied verbatim from the library docs - opts := new(dns.OPT) - opts.Hdr.Name = "." - opts.Hdr.Rrtype = dns.TypeOPT + // opts := new(dns.OPT) + // opts.Hdr.Name = "." + // opts.Hdr.Rrtype = dns.TypeOPT // create the NSID option - ns_opt := new(dns.EDNS0_NSID) - ns_opt.Code = dns.EDNS0NSID - ns_opt.Nsid = "" + // ns_opt := new(dns.EDNS0_NSID) + // ns_opt.Code = dns.EDNS0NSID + // ns_opt.Nsid = "" // 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 - msg.Extra = []dns.RR{opts} + // msg.SetEdns0(4096, false) + // msg.Extra = []dns.RR{opts} // create a new DNS client client := new(dns.Client)