X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/82f37c088726a44e666a119cdf872e21ffdd207f..39c1a4efe0cbf736c421555ae05032089074e2ba:/src/chanserv.h diff --git a/src/chanserv.h b/src/chanserv.h index 932236d..334bf98 100644 --- a/src/chanserv.h +++ b/src/chanserv.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. @@ -54,6 +54,7 @@ enum charOption { chTopicRefresh, chCTCPReaction, chBanTimeout, + chResync, NUM_CHAR_OPTIONS }; @@ -101,6 +102,7 @@ struct chanData unsigned int may_opchan : 1; unsigned int max; unsigned int last_refresh; + unsigned int last_resync; unsigned short banCount; /* Lamers, really */ unsigned short userCount; unsigned short lvlOpts[NUM_LEVEL_OPTIONS]; @@ -119,12 +121,14 @@ struct chanData #define USER_SUSPENDED 0x00000002 #define USER_AUTO_INVITE 0x00000004 #define USER_AUTO_OP 0x00000008 -#define USER_FLAGS_SIZE 15 +#define USER_AUTO_JOIN 0x00000010 +#define USER_FLAGS_SIZE 25 #define USER_FLAGS_DEFAULT USER_AUTO_OP #define IsUserAutoOp(USER) ((USER)->flags & USER_AUTO_OP) #define IsUserSuspended(USER) ((USER)->flags & USER_SUSPENDED) #define IsUserAutoInvite(USER) ((USER)->flags & USER_AUTO_INVITE) +#define IsUserAutoJoin(USER) ((USER)->flags & USER_AUTO_JOIN) struct userData { @@ -201,6 +205,10 @@ struct do_not_register char reason[1]; }; +#define GetChannelUser(channel, handle) _GetChannelUser(channel, handle, 1, 0) +struct userData *_GetChannelUser(struct chanData *channel, struct handle_info *handle, int override, int allow_suspended); +struct banData *add_channel_ban(struct chanData *channel, const char *mask, char *owner, time_t set, time_t triggered, time_t expires, char *reason); + void init_chanserv(const char *nick); void del_channel_user(struct userData *user, int do_gc); struct channelList *chanserv_support_channels(void);