X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Finspircd.h;h=db30ca7cbd700c616df51e54e1d24617bf12a936;hb=6b43da7511ca875b64e58b84f72dd89485c0e7fd;hp=0163d434436a48716e0751787b46da62706757f5;hpb=080a9f5d2431f728c30edab6d4871549d8bc57da;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/inspircd.h b/include/inspircd.h index 0163d4344..db30ca7cb 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -54,24 +54,14 @@ #define MAXSOCKS 64 #define MAXCOMMAND 32 +// crucial defines #define ETIREDGERBILS EAGAIN -/* -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 -#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) -*/ +// 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 {