summaryrefslogtreecommitdiff
path: root/include/config.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2012-10-22 00:54:30 -0400
committerAdam <Adam@anope.org>2012-10-22 00:54:30 -0400
commit0b9db15efc322336ddb08671ce68a3d45fb22520 (patch)
tree2e8149f370c63f08f2f197eaa92b1b36e857b0e9 /include/config.h
parentd5b2f9cfa78ed176ffe1d9f2923799fdd37217a5 (diff)
Add os_dns, a way to control your DNS zone via services
Diffstat (limited to 'include/config.h')
-rw-r--r--include/config.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/config.h b/include/config.h
index 554959e38..947daa3e5 100644
--- a/include/config.h
+++ b/include/config.h
@@ -394,6 +394,10 @@ class CoreExport ServerConfig
/* Max length of channel names */
unsigned ChanLen;
+ /* User and group to run as */
+ Anope::string User;
+ Anope::string Group;
+
/* Casemapping to use */
Anope::string CaseMap;
@@ -494,8 +498,10 @@ class CoreExport ServerConfig
/* Nameserver to use for resolving hostnames */
Anope::string NameServer;
- /* TIme before a DNS query is considered dead */
+ /* Time before a DNS query is considered dead */
time_t DNSTimeout;
+ /* The port DNS queries come in on */
+ int DNSPort;
/* Prefix of guest nicks when a user gets forced off of a nick */
Anope::string NSGuestNickPrefix;