summaryrefslogtreecommitdiff
path: root/include/inspircd.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-30 14:34:49 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-30 14:34:49 +0000
commitfce2d243c023660a9afbf01143cde6eda2ec7a88 (patch)
treefcf7276b29c2b546780e4626d4cdccdd1b08ea8a /include/inspircd.h
parent81c26039d5b27f039cbaae53f56fe6eca4123467 (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 'include/inspircd.h')
-rw-r--r--include/inspircd.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index 006e8092e..47ce9d971 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -385,6 +385,12 @@ class InspIRCd : public classbase
int time_delta;
public:
+
+ /** Number of unregistered users online right now.
+ * (Unregistered means before USER/NICK/dns)
+ */
+ int unregistered_count;
+
/** List of server names we've seen.
*/
servernamelist servernames;