Merge pull request #49 from Yannik/patch-1
return cname if requested RR was not found and cname exists (fixes #48)
This commit is contained in:
commit
978ac5d62b
6
dns.go
6
dns.go
@ -52,7 +52,11 @@ func answer(q dns.Question) ([]dns.RR, int, error) {
|
|||||||
var rtype = q.Qtype
|
var rtype = q.Qtype
|
||||||
r, ok := RR.Records[rtype][domain]
|
r, ok := RR.Records[rtype][domain]
|
||||||
if !ok {
|
if !ok {
|
||||||
rcode = dns.RcodeNameError
|
r, ok = RR.Records[dns.TypeCNAME][domain]
|
||||||
|
if !ok {
|
||||||
|
rcode = dns.RcodeNameError
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
log.WithFields(log.Fields{"qtype": dns.TypeToString[rtype], "domain": domain, "rcode": dns.RcodeToString[rcode]}).Debug("Answering question for domain")
|
log.WithFields(log.Fields{"qtype": dns.TypeToString[rtype], "domain": domain, "rcode": dns.RcodeToString[rcode]}).Debug("Answering question for domain")
|
||||||
return r, rcode, nil
|
return r, rcode, nil
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user