X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Finspircd.h;h=8e75c256c91479a57b6fa7b567b01b97fa2e63e2;hb=a1f073f66f4b985bf776b9be2015136209c0c311;hp=13c3a0f5db692cdd46b1ebd6ef7ae3d6f2165371;hpb=d7f9becf8c383d83cead5f3b7b3be0dc0d1327f0;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/inspircd.h b/include/inspircd.h index 13c3a0f5d..8e75c256c 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -1,130 +1,127 @@ -/* +/* +------------------------------------+ + * | 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 -#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 #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 "helperfuncs.h" +#include "socketengine.h" +#include "command_parse.h" -// some misc defines - +/* Some misc defines */ #define ERROR -1 -#define TRUE 1 -#define FALSE 0 -#define IDENTMAX 9 -#define MAXSOCKS 64 - -// maximum lengths of items - -#define MAXQUIT 255 #define MAXCOMMAND 32 -#define MAXTOPIC 307 -#define MAXKICK 255 - -// flags for use with log() - -#define DEBUG 10 -#define VERBOSE 20 -#define DEFAULT 30 -#define SPARSE 40 -#define NONE 50 - -// flags for use with WriteMode - -#define WM_AND 1 -#define WM_OR 2 - -// flags for use with OnUserPreMessage and OnUserPreNotice - -#define TYPE_USER 1 -#define TYPE_CHANNEL 2 - -typedef std::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 WriteMode(const char* modes, int flags, const char* text, ...); -void log(int level, 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, bool local_only, char* text, ...); -int isnick(const char *n); -userrec* Find(std::string nick); -chanrec* FindChan(const char* chan); -char* cmode(userrec *user, chanrec *chan); -std::string getservername(); -std::string getserverdesc(); -std::string getnetworkname(); -std::string getadminname(); -std::string getadminemail(); -std::string getadminnick(); -void readfile(file_cache &F, const char* fname); -bool ModeDefined(char c, int i); -bool ModeDefinedOper(char c, int i); -int ModeDefinedOn(char c, int i); -int ModeDefinedOff(char c, int i); -chanrec* add_channel(userrec *user, const char* cn, const char* key, bool override); -chanrec* del_channel(userrec *user, const char* cname, const char* reason, bool local); -void force_nickchange(userrec* user,const char* newnick); -void kill_link(userrec *user,const char* r); -int usercount(chanrec *c); -void call_handler(const char* commandname,char **parameters, int pcnt, userrec *user); -void send_network_quit(const char* nick, const char* reason); -void ChangeName(userrec* user, const char* gecos); -void ChangeDisplayedHost(userrec* user, const char* host); -long GetRevision(); - -// mesh network functions - -void NetSendToCommon(userrec* u, char* s); -void NetSendToAll(char* s); -void NetSendToAllAlive(char* s); -void NetSendToOne(char* target,char* s); -void NetSendToAllExcept(const char* target,char* s); -void NetSendMyRoutingTable(); -void DoSplit(const char* params); +/* Crucial defines */ +#define ETIREDGERBILS EAGAIN + +/* 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) ) + +#define DELETE(x) { do_log(DEBUG,"%s:%d: delete()",__FILE__,__LINE__); if (x) { delete x; x = NULL; } else log(DEBUG,"Attempt to delete NULL pointer!"); } + +template inline std::string ConvToStr(const T &in) +{ + std::stringstream tmp; + if (!(tmp << in)) return std::string(); + return tmp.str(); +} + +class serverstats : public classbase +{ + public: + unsigned long statsAccept; + unsigned long statsRefused; + unsigned long statsUnknown; + unsigned long statsCollisions; + unsigned long statsDns; + unsigned long statsDnsGood; + unsigned long statsDnsBad; + unsigned long statsConnects; + double statsSent; + double statsRecv; + unsigned long BoundPortCount; + + serverstats() + { + statsAccept = statsRefused = statsUnknown = 0; + statsCollisions = statsDns = statsDnsGood = 0; + statsDnsBad = statsConnects = 0; + statsSent = statsRecv = 0.0; + BoundPortCount = 0; + } +}; + + +class InspIRCd : public classbase +{ + private: + char MODERR[MAXBUF]; + bool expire_run; + + void EraseFactory(int j); + void EraseModule(int j); + void BuildISupport(); + void MoveTo(std::string modulename,int slot); + void Start(); + void SetSignals(); + bool DaemonSeed(); + void MakeLowerMap(); + 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); + + public: + time_t startup_time; + ModeParser* ModeGrok; + CommandParser* Parser; + SocketEngine* SE; + serverstats* stats; + + std::string GetRevision(); + std::string GetVersionString(); + void WritePID(const std::string &filename); + char* ModuleError(); + bool LoadModule(const char* filename); + bool UnloadModule(const char* filename); + InspIRCd(int argc, char** argv); + void DoOneIteration(bool process_module_sockets); + int Run(); + +}; + +/* Miscellaneous stuff here, moved from inspircd_io.h */ +void Exit(int status); + +/* userrec optimization stuff */ +void AddServerName(const std::string &servername); +const char* FindServerNamePtr(const std::string &servername); +bool FindServerName(const std::string &servername); + +#endif