summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
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;
}
};