aboutsummaryrefslogtreecommitdiffstats
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorGravatar brain2005-12-16 09:30:53 +0000
committerGravatar brain2005-12-16 09:30:53 +0000
commit7cf8d9c1c8ba68419d282e715b7fc3575987a6f2 (patch)
tree66e1aa3c524c25ba69da052511fb297697b6f07a /src/inspircd.cpp
parentAdjusted OnRawSocketClose to new system (diff)
downloadinspircd++-7cf8d9c1c8ba68419d282e715b7fc3575987a6f2.tar.gz
inspircd++-7cf8d9c1c8ba68419d282e715b7fc3575987a6f2.tar.bz2
inspircd++-7cf8d9c1c8ba68419d282e715b7fc3575987a6f2.zip
Moved BoundPortCount into serverstats
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2504 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index b564ec396..e532add12 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -97,7 +97,6 @@ chan_hash chanlist;
whowas_hash whowas;
command_table cmdlist;
servernamelist servernames;
-int BoundPortCount = 0;
char lowermap[255];
void AddServerName(std::string servername)
@@ -354,7 +353,7 @@ InspIRCd::InspIRCd(int argc, char** argv)
SetupCommandTable();
AddServerName(Config->ServerName);
CheckDie();
- BoundPortCount = BindPorts();
+ stats->BoundPortCount = BindPorts();
printf("\n");
if (!Config->nofork)
@@ -1066,7 +1065,7 @@ int InspIRCd::Run()
/* Add the listening sockets used for client inbound connections
* to the socket engine
*/
- for (int count = 0; count < BoundPortCount; count++)
+ for (int count = 0; count < stats->BoundPortCount; count++)
SE->AddFd(openSockfd[count],true,X_LISTEN);
WritePID(Config->PID);