]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/inspircd.h
Moved the contents of the mainloop into a function called InspIRCd::DoOneIteration().
[user/henk/code/inspircd.git] / include / inspircd.h
index 68289d5ee26e98ba5aff5e1e86871c5528cf060d..5a8dbcf97cd1439f0e195e5c0735cb4707a3781d 100644 (file)
@@ -54,6 +54,8 @@
 #define MAXSOCKS 64
 #define MAXCOMMAND 32
 
+#define ETIREDGERBILS EAGAIN
+
 /*
 flags for use with WriteMode
 
@@ -124,6 +126,7 @@ class InspIRCd
        void MoveAfter(std::string modulename, std::string after);
        void MoveBefore(std::string modulename, std::string before);
        InspIRCd(int argc, char** argv);
+       void DoOneIteration(bool process_module_sockets);
        int Run();
 
 };
@@ -131,5 +134,6 @@ class InspIRCd
 /* userrec optimization stuff */
 void AddServerName(std::string servername);
 const char* FindServerNamePtr(std::string servername);
+bool FindServerName(std::string servername);
 
 #endif