diff options
author | Adam <Adam@anope.org> | 2012-10-24 19:32:26 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-10-24 19:32:26 -0400 |
commit | 1057fa842144e84563ddd887beaeaebe8c4f8a47 (patch) | |
tree | c43d1706df45866d5c13fcfb8333d3ee62bbdfd0 /include/config.h | |
parent | fca9ec085e74efa005dd981f2af2a6d6fd78ce89 (diff) |
BIND's forward ability did not work as I expected
because it will not forward non recursive queries.
So, added support for SOA, NS, and AXFR requests.
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h index 5851247e8..d1e7210e0 100644 --- a/include/config.h +++ b/include/config.h @@ -503,6 +503,12 @@ class CoreExport ServerConfig /* The IP/port DNS queries come in on */ Anope::string DNSIP; int DNSPort; + /* DNS SOA admin */ + Anope::string DNSSOAAdmin; + /* DNS SOA primary NS */ + Anope::string DNSSOANS; + /* SOA Refresh time */ + unsigned DNSSOARefresh; /* Prefix of guest nicks when a user gets forced off of a nick */ Anope::string NSGuestNickPrefix; |