diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-10 18:22:16 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-10 18:22:16 +0000 |
commit | 3dacf1edd2e1e623b07819bb483ae61eff3854cd (patch) | |
tree | 30cf80a7c57f2c3fe0c630bdfb51785ac5d1b3b7 /include/configreader.h | |
parent | b9fbf3621c2a3ee18dd9c575d086fc16905f4793 (diff) |
Made a load more stuff Extensible which might be of use to someone
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4293 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/configreader.h')
-rw-r--r-- | include/configreader.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/configreader.h b/include/configreader.h index 63836056a..3bb7bb4ed 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -5,7 +5,7 @@ * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. * E-mail: * <brain@chatspike.net> - * <Craig@chatspike.net> + * <Craig@chatspike.net> * <omster@gmail.com> * * Written by Craig Edwards, Craig McLure, and others. @@ -54,7 +54,7 @@ struct MultiConfig { * and storage of the configuration data needed to run the ircd, such as * the servername, connect classes, /ADMIN data, MOTDs and filenames etc. */ -class ServerConfig : public classbase +class ServerConfig : public Extensible { private: /** This variable holds the names of all @@ -214,18 +214,18 @@ class ServerConfig : public classbase * handling code, used to read data into a user's * recvQ. */ - int NetBufferSize; + int NetBufferSize; /** The value to be used for listen() backlogs * as default. */ - int MaxConn; + int MaxConn; /** The soft limit value assigned to the irc server. * The IRC server will not allow more than this * number of local users. */ - unsigned int SoftLimit; + unsigned int SoftLimit; /** Maximum number of targets for a multi target command * such as PRIVMSG or KICK @@ -235,20 +235,20 @@ class ServerConfig : public classbase /** The maximum number of /WHO results allowed * in any single /WHO command. */ - int MaxWhoResults; + int MaxWhoResults; /** True if the DEBUG loglevel is selected. */ - int debugging; + int debugging; /** The loglevel in use by the IRC server */ - int LogLevel; + int LogLevel; /** How many seconds to wait before exiting * the program when /DIE is correctly issued. */ - int DieDelay; + int DieDelay; /** True if we're going to hide netsplits as *.net *.split for non-opers */ @@ -271,7 +271,7 @@ class ServerConfig : public classbase /** A list of IP addresses the server is listening * on. */ - char addrs[MAXBUF][255]; + char addrs[MAXBUF][255]; /** The MOTD file, cached in a file_cache type. */ |