Closed jamesph3 closed 1 year ago
I was testing with PTR records and noticed they were coming through as AAAA. I can see in the qtype.cpp the PTR qtype is mapped to AAAA:
} else if (qt == "PTR") { qtype = LDNS_RR_TYPE_AAAA; } else if (qt == "TXT") {
Should this be updated and mapped to LDNS_RR_TYPE_PTR?
Yes, looks like simple copy and paste error. Can you create a quick PR for this? Thanks!
PR created...
Thanks!
I was testing with PTR records and noticed they were coming through as AAAA. I can see in the qtype.cpp the PTR qtype is mapped to AAAA:
Should this be updated and mapped to LDNS_RR_TYPE_PTR?