X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Finspircd.h;h=5a8dbcf97cd1439f0e195e5c0735cb4707a3781d;hb=65d0d4fb366ef527f7bde471fc809d48fc26ccf2;hp=100b473343cade62b44d9047b778da1f6e62842e;hpb=8f282762b0a90458a808e13c4a52196ebd14534a;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/inspircd.h b/include/inspircd.h index 100b47334..5a8dbcf97 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -1,76 +1,139 @@ -/* - - -*/ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. + * E-mail: + * + * + * + * Written by Craig Edwards, Craig McLure, and others. + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ +#ifndef __INSPIRCD_H__ +#define __INSPIRCD_H__ +#include "inspircd_config.h" #include #include -#include -#include #include #include #include #include #include -#include #include -#include -#include -#include #include + #ifndef _LINUX_C_LIB_VERSION #include #include #include #endif + #include #include #include -#include "inspircd_config.h" #include "inspircd_io.h" -#include "inspircd_util.h" #include "users.h" #include "channels.h" +#include "socket.h" +#include "mode.h" +#include "socketengine.h" +#include "command_parse.h" + +// some misc defines #define ERROR -1 #define TRUE 1 #define FALSE 0 -#define IDENTMAX 9 -/* max sockets we can open */ #define MAXSOCKS 64 +#define MAXCOMMAND 32 + +#define ETIREDGERBILS EAGAIN + +/* +flags for use with WriteMode + +#define WM_AND 1 +#define WM_OR 2 -typedef deque file_cache; - -/* prototypes */ -int InspIRCd(void); -int InitConfig(void); -void Error(int status); -void send_error(char *s); -void ReadConfig(void); -void strlower(char *n); - -void WriteOpers(char* text, ...); -void debug(char *text, ...); -void Write(int sock,char *text, ...); -void WriteServ(int sock, char* text, ...); -void WriteFrom(int sock, userrec *user,char* text, ...); -void WriteTo(userrec *source, userrec *dest,char *data, ...); -void WriteChannel(chanrec* Ptr, userrec* user, char* text, ...); -void ChanExceptSender(chanrec* Ptr, userrec* user, char* text, ...); -int common_channels(userrec *u, userrec *u2); -void WriteCommon(userrec *u, char* text, ...); -void WriteCommonExcept(userrec *u, char* text, ...); -void WriteWallOps(userrec *source, char* text, ...); -int isnick(const char *n); -userrec* Find(string nick); -chanrec* FindChan(const char* chan); -char* cmode(userrec *user, chanrec *chan); -string getservername(); -string getnetworkname(); -string getadminname(); -string getadminemail(); -string getadminnick(); -void readfile(file_cache &F, const char* fname); +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) +*/ + +class serverstats +{ + public: + int statsAccept; + int statsRefused; + int statsUnknown; + int statsCollisions; + int statsDns; + int statsDnsGood; + int statsDnsBad; + int statsConnects; + int statsSent; + int statsRecv; + int BoundPortCount; + + serverstats() + { + statsAccept = statsRefused = statsUnknown = 0; + statsCollisions = statsDns = statsDnsGood = 0; + statsDnsBad = statsConnects = statsSent = statsRecv = 0; + BoundPortCount = 0; + } +}; + + +class InspIRCd +{ + + private: + char MODERR[MAXBUF]; + void erase_factory(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(); + +}; + +/* userrec optimization stuff */ +void AddServerName(std::string servername); +const char* FindServerNamePtr(std::string servername); +bool FindServerName(std::string servername); + +#endif