summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index cd5f74a0a..c31dbae50 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -917,7 +917,13 @@ int InspIRCd::Run()
this->BuildISupport();
printf("\nInspIRCd is now running!\n");
-
+
+ if (!stats->BoundPortCount)
+ {
+ printf("\nI couldn't bind any ports! Are you sure you didn't start InspIRCd twice?\n");
+ Exit(ERROR);
+ }
+
if (!Config->nofork)
{
fclose(stdout);
@@ -928,8 +934,12 @@ int InspIRCd::Run()
/* Add the listening sockets used for client inbound connections
* to the socket engine
*/
+ log(DEBUG,"%d listeners",stats->BoundPortCount);
for (unsigned long count = 0; count < stats->BoundPortCount; count++)
+ {
+ log(DEBUG,"Add listener: %d",Config->openSockfd[count]);
SE->AddFd(Config->openSockfd[count],true,X_LISTEN);
+ }
this->WritePID(Config->PID);