X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Finspircd.h;h=db30ca7cbd700c616df51e54e1d24617bf12a936;hb=6b43da7511ca875b64e58b84f72dd89485c0e7fd;hp=fb978f70445fd8188365f8494b5bd1c4b678338c;hpb=d0f0cbea0727e3a3f670a308b173559061a0ca1d;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/inspircd.h b/include/inspircd.h index fb978f704..db30ca7cb 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: * * @@ -39,10 +39,12 @@ #include #include "inspircd_io.h" -#include "inspircd_util.h" #include "users.h" #include "channels.h" -#include "sockets.h" +#include "socket.h" +#include "mode.h" +#include "socketengine.h" +#include "command_parse.h" // some misc defines @@ -52,22 +54,14 @@ #define MAXSOCKS 64 #define MAXCOMMAND 32 -// flags for use with WriteMode +// crucial defines +#define ETIREDGERBILS EAGAIN -#define WM_AND 1 -#define WM_OR 2 - -// flags for use with OnUserPreMessage and OnUserPreNotice - -#define TYPE_USER 1 -#define TYPE_CHANNEL 2 -#define TYPE_SERVER 3 - -#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*); +// This define is used in place of strcmp when we +// want to check if a char* string contains only one +// letter. Pretty fast, its just two compares and an +// addition. +#define IS_SINGLE(x,y) ( (*x == y) && (*(x+1) == 0) ) class serverstats { @@ -82,12 +76,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; } }; @@ -96,42 +92,39 @@ class InspIRCd { private: + char MODERR[MAXBUF]; void erase_factory(int j); void erase_module(int j); - bool UnloadModule(const char* filename); - bool LoadModule(const char* filename); + void BuildISupport(); + void MoveTo(std::string modulename,int slot); + bool expire_run; public: time_t startup_time; - std::vector module_sockets; - + 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 force_nickchange(userrec* user,const char* newnick); -void kill_link(userrec *user,const char* r); -void kill_link_silent(userrec *user,const char* r); -void call_handler(const char* commandname,char **parameters, int pcnt, userrec *user); -bool is_valid_cmd(const char* commandname, int pcnt, userrec * user); -std::string GetRevision(); -int loop_call(handlerfunc fn, char **parameters, int pcnt, userrec *u, int start, int end, int joins); -void AddWhoWas(userrec* u); -void ConnectUser(userrec *user); -userrec* ReHashNick(char* Old, char* New); -char* ModuleError(); -/* optimization tricks to save us walking the user hash */ -void AddOper(userrec* user); -void DeleteOper(userrec* user); -void handle_version(char **parameters, int pcnt, userrec *user); /* userrec optimization stuff */ void AddServerName(std::string servername); const char* FindServerNamePtr(std::string servername); -std::string GetVersionString(); -void* dns_task(void* arg); -void process_buffer(const char* cmdbuf,userrec *user); -void FullConnectUser(userrec* user); +bool FindServerName(std::string servername); #endif