X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/82f37c088726a44e666a119cdf872e21ffdd207f..35305a49c0973c0e29e4a607c2b507a2d8face43:/src/chanserv.h diff --git a/src/chanserv.h b/src/chanserv.h index 932236d..b3bc27a 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]; @@ -201,6 +203,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);