diff options
author | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-02-04 14:14:56 +0000 |
---|---|---|
committer | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-02-04 14:14:56 +0000 |
commit | d9d2ea1ef79c4cb4a444e89d649a0a47db74863a (patch) | |
tree | 334eae1f17509e58d70a6f9923f55f573caef530 | |
parent | 38ee4b2f89e1ba66bb0c50b2bae559acf5c2c007 (diff) |
Set a few defaults for <connect> tag.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6489 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/configreader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 0bb22e43a..4124f9c87 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -604,8 +604,8 @@ void ServerConfig::Read(bool bail, userrec* user) {"connect", {"allow", "deny", "password", "timeout", "pingfreq", "flood", "threshold", "sendq", "recvq", "localmax", "globalmax", NULL}, - {"", "", "", "", "", "", - "", "", "", "", "", NULL}, + {"", "", "", "", "120", "", + "", "", "", "3", "3", NULL}, {DT_CHARPTR, DT_CHARPTR, DT_CHARPTR, DT_INTEGER, DT_INTEGER, DT_INTEGER, DT_INTEGER, DT_INTEGER, DT_INTEGER, DT_INTEGER, DT_INTEGER}, InitConnect, DoConnect, DoneConnect}, |