]> 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 e41482341e407647dba1ed50cbbdbd0170189118..5a8dbcf97cd1439f0e195e5c0735cb4707a3781d 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *               <Craig@chatspike.net>
@@ -54,6 +54,8 @@
 #define MAXSOCKS 64
 #define MAXCOMMAND 32
 
+#define ETIREDGERBILS EAGAIN
+
 /*
 flags for use with WriteMode
 
@@ -104,6 +106,7 @@ class InspIRCd
         void erase_factory(int j);
         void erase_module(int j);
        void BuildISupport();
+       void MoveTo(std::string modulename,int slot);
 
  public:
        time_t startup_time;
@@ -118,7 +121,12 @@ class InspIRCd
        char* ModuleError();
        bool LoadModule(const char* filename);
        bool UnloadModule(const char* filename);
+       void MoveToLast(std::string modulename);
+       void MoveToFirst(std::string modulename);
+       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();
 
 };
@@ -126,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