diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-30 14:34:49 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-30 14:34:49 +0000 |
commit | fce2d243c023660a9afbf01143cde6eda2ec7a88 (patch) | |
tree | fcf7276b29c2b546780e4626d4cdccdd1b08ea8a /src/inspircd.cpp | |
parent | 81c26039d5b27f039cbaae53f56fe6eca4123467 (diff) |
Add unregistered user counter, this may also fix the (minor) m_conn_lusers shows current connection as unregged
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6170 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 497da8ff2..4b86d3816 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -267,6 +267,8 @@ InspIRCd::InspIRCd(int argc, char** argv) modules.resize(255); factory.resize(255); + this->unregistered_count = 0; + this->clientlist = new user_hash(); this->chanlist = new chan_hash(); |