X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Finspircd.h;h=5a8dbcf97cd1439f0e195e5c0735cb4707a3781d;hb=65d0d4fb366ef527f7bde471fc809d48fc26ccf2;hp=11f93b5741427a23af8baff0aa637eb536771f70;hpb=0465fd1da7a7504f31e0c96fa1b77190ec658c32;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/inspircd.h b/include/inspircd.h index 11f93b574..5a8dbcf97 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -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: * * @@ -42,6 +42,9 @@ #include "users.h" #include "channels.h" #include "socket.h" +#include "mode.h" +#include "socketengine.h" +#include "command_parse.h" // some misc defines @@ -51,12 +54,15 @@ #define MAXSOCKS 64 #define MAXCOMMAND 32 -// flags for use with WriteMode +#define ETIREDGERBILS EAGAIN + +/* +flags for use with WriteMode #define WM_AND 1 #define WM_OR 2 -// flags for use with OnUserPreMessage and OnUserPreNotice +flags for use with OnUserPreMessage and OnUserPreNotice #define TYPE_USER 1 #define TYPE_CHANNEL 2 @@ -65,8 +71,7 @@ #define IS_LOCAL(x) (x->fd > -1) #define IS_REMOTE(x) (x->fd < 0) #define IS_MODULE_CREATED(x) (x->fd == FD_MAGIC_NUMBER) - -typedef void (handlerfunc) (char**, int, userrec*); +*/ class serverstats { @@ -81,12 +86,14 @@ class serverstats int statsConnects; int statsSent; int statsRecv; + int BoundPortCount; serverstats() { statsAccept = statsRefused = statsUnknown = 0; statsCollisions = statsDns = statsDnsGood = 0; statsDnsBad = statsConnects = statsSent = statsRecv = 0; + BoundPortCount = 0; } }; @@ -97,29 +104,36 @@ class InspIRCd private: char MODERR[MAXBUF]; void erase_factory(int j); - void erase_module(int j); + void erase_module(int j); + void BuildISupport(); + void MoveTo(std::string modulename,int slot); public: time_t startup_time; + ModeParser* ModeGrok; + CommandParser* Parser; + SocketEngine* SE; + serverstats* stats; + void MakeLowerMap(); std::string GetRevision(); std::string GetVersionString(); 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(); }; -/* prototypes */ -void call_handler(std::string &commandname,char **parameters, int pcnt, userrec *user); -bool is_valid_cmd(std::string &commandname, int pcnt, userrec * user); -int loop_call(handlerfunc fn, char **parameters, int pcnt, userrec *u, int start, int end, int joins); /* userrec optimization stuff */ void AddServerName(std::string servername); const char* FindServerNamePtr(std::string servername); -void* dns_task(void* arg); -void process_buffer(const char* cmdbuf,userrec *user); +bool FindServerName(std::string servername); #endif