summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-16 09:30:53 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-16 09:30:53 +0000
commit7cf8d9c1c8ba68419d282e715b7fc3575987a6f2 (patch)
tree66e1aa3c524c25ba69da052511fb297697b6f07a /include
parentc1d266269619fb84f3c08b153227ec819b6fc82a (diff)
Moved BoundPortCount into serverstats
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2504 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/inspircd.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index 11f93b574..ad95d859e 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -81,12 +81,14 @@ class serverstats
int statsConnects;
int statsSent;
int statsRecv;
+ int BoundPortCount;
serverstats()
{
statsAccept = statsRefused = statsUnknown = 0;
statsCollisions = statsDns = statsDnsGood = 0;
statsDnsBad = statsConnects = statsSent = statsRecv = 0;
+ BoundPortCount = 0;
}
};