From 31dc0f8489dfbf63efbf0960711b3bbaa5543e30 Mon Sep 17 00:00:00 2001 From: brain Date: Tue, 16 May 2006 11:38:45 +0000 Subject: Check for failed epoll or kqueue git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3961 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/socketengine.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/socketengine.cpp b/src/socketengine.cpp index bcc8e23af..976f578fd 100644 --- a/src/socketengine.cpp +++ b/src/socketengine.cpp @@ -40,6 +40,17 @@ SocketEngine::SocketEngine() #ifdef USE_KQUEUE EngineHandle = kqueue(); #endif +#ifdef USE_SELECT + EngineHandle = 0; +#endif + if (EngineHandle == -1) + { + log(SPARSE,"ERROR: Could not initialize socket engine. Your kernel probably does not have the proper features."); + log(SPARSE,"ERROR: this is a fatal error, exiting now."); + printf("ERROR: Could not initialize socket engine. Your kernel probably does not have the proper features."); + printf("ERROR: this is a fatal error, exiting now."); + Exit(0); + } CurrentSetSize = 0; } -- cgit v1.2.3