diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-16 09:30:53 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-16 09:30:53 +0000 |
commit | 7cf8d9c1c8ba68419d282e715b7fc3575987a6f2 (patch) | |
tree | 66e1aa3c524c25ba69da052511fb297697b6f07a /include/inspircd.h | |
parent | c1d266269619fb84f3c08b153227ec819b6fc82a (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/inspircd.h')
-rw-r--r-- | include/inspircd.h | 2 |
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; } }; |