-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dns: support AXFR queries #14648
Comments
The principle of But it seems C-ARES does not support to parse |
The main difference between "normal" queries and AXFR queries is that AXFR queries can have their answers spread across any number of messages. @XadillaX might be correct, I am not sure whether c-ares supports this 😕 |
Yeah, looks like c-ares can indeed not parse a
|
@silverwind Is the conclusion that this isn't possible? If yes, can you close it out? (Aside: adig -- like c-ares -- indeed doesn't support AXFR, it only recognizes the tag.) |
Yes, we can close it, I just don't want it to be forgotten. Let's see what comes out of #14713, otherwise I'll open an issue on the c-ares tracker. |
@silverwind Did you ever open that issue on the c-ares tracker? |
No, I don't think so. Nowadays, I just use https://github.com/mafintosh/dns-packet/ for advanced DNS use cases. |
Now that we support
ANY
queries (#13137), I think the foundation is laid to support zone transfers and we can likely share most of the code that is used to parse theANY
response and parse theAXFR
response with it.cc: @XadillaX
The text was updated successfully, but these errors were encountered: