diff options
author | Adam <Adam@anope.org> | 2013-08-10 23:28:58 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-08-10 23:28:58 -0400 |
commit | c7aab50bffb68f49eeebc291a45caf6f8ef16445 (patch) | |
tree | 302918d3868866790f357ba207180850ea63a574 /include/modules/dns.h | |
parent | c507c78d5aa7e1a194acfce2e56e8ed7d6488b1d (diff) |
Support DNS ANY query type
Diffstat (limited to 'include/modules/dns.h')
-rw-r--r-- | include/modules/dns.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/modules/dns.h b/include/modules/dns.h index 99b84098f..44b9370cb 100644 --- a/include/modules/dns.h +++ b/include/modules/dns.h @@ -34,7 +34,9 @@ namespace DNS /* IPv6 AAAA lookup */ QUERY_AAAA = 28, /* Zone transfer */ - QUERY_AXFR = 252 + QUERY_AXFR = 252, + /* A lookup for any record */ + QUERY_ANY = 255 }; /** Flags that can be AND'd into DNSPacket::flags to receive certain values |