X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/ac3bdc8db9c628263a86035ede92b7e905e4c8a6..35305a49c0973c0e29e4a607c2b507a2d8face43:/src/hash.h diff --git a/src/hash.h b/src/hash.h index 8ee04e3..1cceb21 100644 --- a/src/hash.h +++ b/src/hash.h @@ -3,7 +3,7 @@ * * This file is part of x3. * - * srvx is free software; you can redistribute it and/or modify + * x3 is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. @@ -50,6 +50,9 @@ #define MODE_SSLONLY 0x00400000 /* +Z ssl only */ #define MODE_HALFOP 0x00800000 /* +h USER */ #define MODE_EXEMPT 0x01000000 /* +e exempt */ +#define MODE_HIDEMODE 0x02000000 /* +L hide modes */ +#define MODE_APASS 0x04000000 /* +A adminpass */ +#define MODE_UPASS 0x08000000 /* +U userpass */ #define MODE_REMOVE 0x80000000 #define FLAGS_OPER 0x0001 /* Operator +O */ @@ -98,10 +101,12 @@ #define NICKLEN 30 #define USERLEN 10 #define HOSTLEN 63 -#define ACCOUNTLEN 15 +#define SOCKIPLEN 45 +#define ACCOUNTLEN 15 #define REALLEN 50 #define TOPICLEN 250 #define CHANNELLEN 200 +#define MAXOPLEVEL 999 #define MAXMODEPARAMS 6 #define MAXBANS 128 @@ -123,12 +128,15 @@ struct userNode { char info[REALLEN + 1]; /* Free form additional client information */ char hostname[HOSTLEN + 1]; /* DNS name or IP address */ char fakehost[HOSTLEN + 1]; /* Assigned fake host */ + char crypthost[HOSTLEN + 30]; /* Crypted hostname */ + char cryptip[SOCKIPLEN + 30]; /* Crypted IP */ #ifdef WITH_PROTOCOL_P10 char numeric[COMBO_NUMERIC_LEN+1]; unsigned int num_local : 18; #endif + unsigned int loc; /* Is user connecting via LOC? */ unsigned int dead : 1; /* Is user waiting to be recycled? */ - struct in_addr ip; /* User's IP address */ + irc_in_addr_t ip; /* User's IP address */ long modes; /* user flags +isw etc... */ // sethost - reed/apples @@ -148,6 +156,8 @@ struct chanNode { chan_mode_t modes; unsigned int limit, locks; char key[KEYLEN + 1]; + char upass[KEYLEN + 1]; + char apass[KEYLEN + 1]; time_t timestamp; /* creation time */ char topic[TOPICLEN + 1]; @@ -182,6 +192,7 @@ struct modeNode { struct chanNode *channel; struct userNode *user; long modes; + short oplevel; time_t idle_since; }; @@ -208,6 +219,42 @@ struct server { struct serverList children; }; +struct waitingConnection { + char *server; + char *target; +}; + +struct routingPlan { + dict_t servers; +}; + +struct routingPlanServer { + char *uplink; + char *secondaryuplink; + unsigned int port; + int karma; + int offline; +}; + +/* Ported from X2 */ +struct routeList { + char* server; /* Name of the server */ + unsigned int port; /* connection port */ + char *uplink; /* Server its linked to (towards us) */ + char *secondaryuplink; + int outsideness; /* 0 means leaf, 1 second layer, etc. my uplink is highest */ + struct routeList *next; +}; + +/* Ported from X2 */ +struct route { + int count; /* how many servers we have */ + int maxdepth; /* biggest outsideness value */ + int centered; /* set to TRUE when changerouteUplinks is run */ + struct routeList *servers; +}; + + extern struct server *self; extern dict_t channels; extern dict_t clients; @@ -268,7 +315,7 @@ int ChannelExemptExists(struct chanNode *channel, const char *exempt); typedef int (*topic_func_t)(struct userNode *who, struct chanNode *chan, const char *old_topic); void reg_topic_func(topic_func_t handler); -void SetChannelTopic(struct chanNode *channel, struct userNode *user, const char *topic, int announce); +void SetChannelTopic(struct chanNode *channel, struct userNode *service, struct userNode *user, const char *topic, int announce); struct userNode *IsInChannel(struct chanNode *channel, struct userNode *user); void init_structs(void);