From 2329d59b09cdc05b0b403f7d313df65492e1813b Mon Sep 17 00:00:00 2001 From: brain Date: Tue, 8 Aug 2006 09:32:57 +0000 Subject: Extra checking that the fd's we pass to SocketEngine::AddFd were added (a lot of assuming was going off, leading to total chaos if we run out of fd's etc) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4780 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/inspircd.cpp | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) (limited to 'src/inspircd.cpp') diff --git a/src/inspircd.cpp b/src/inspircd.cpp index c31dbae50..27029a6e4 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -908,7 +908,7 @@ void InspIRCd::DoOneIteration(bool process_module_sockets) int InspIRCd::Run() { /* Until THIS point, ServerInstance == NULL */ - + this->Res = new DNS(); LoadAllModules(this); @@ -916,21 +916,12 @@ int InspIRCd::Run() /* Just in case no modules were loaded - fix for bug #101 */ 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); - fclose(stderr); - fclose(stdin); - } - /* Add the listening sockets used for client inbound connections * to the socket engine */ @@ -938,9 +929,22 @@ int InspIRCd::Run() 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); + if (!SE->AddFd(Config->openSockfd[count],true,X_LISTEN)) + { + printf("\nEH? Could not add listener to socketengine. You screwed up, aborting.\n"); + Exit(ERROR); + } } + if (!Config->nofork) + { + fclose(stdout); + fclose(stderr); + fclose(stdin); + } + + printf("\nInspIRCd is now running!\n"); + this->WritePID(Config->PID); /* main loop, this never returns */ -- cgit v1.3.1-10-gc9f91