]> jfr.im git - irc/quakenet/newserv.git/blob - chanserv/chanservschedule.c
Merge.
[irc/quakenet/newserv.git] / chanserv / chanservschedule.c
1 #include "chanserv.h"
2 #include "../lib/irc_string.h"
3 #include "../core/schedule.h"
4
5 void chanservdgline(void* arg) {
6 reguser *rup=(reguser*)arg;
7 nick *np, *nl;
8 authname *anp;
9 int i;
10 unsigned int ucount;
11
12 if (!rup)
13 return;
14
15 if (!(anp=findauthname(rup->ID)))
16 return;
17
18 for (nl=anp->nicks;nl;nl=nl->nextbyauthname) {
19 for (i=0, ucount=0; i<NICKHASHSIZE; i++)
20 for (np=nicktable[i];np;np=np->next)
21 if (!ircd_strcmp(np->ident, nl->ident) && np->ipnode==nl->ipnode)
22 ucount++;
23
24 if (ucount >= MAXGLINEUSERS) {
25 chanservwallmessage("Delayed GLINE \"*!%s@%s\" (account %s) would hit %d users, aborting.",
26 nl->ident, IPtostr(nl->p_ipaddr), rup->username, ucount);
27 } else {
28 irc_send("%s GL * +*!%s@%s 3600 :%s\r\n", mynumeric->content, nl->ident,
29 IPtostr(nl->p_ipaddr), rup->suspendreason->content);
30 chanservwallmessage("Delayed GLINE \"*!%s@%s\" (authed as %s) expires in 60 minute/s (hit %d user%s) (reason: %s)",
31 nl->ident, IPtostr(nl->p_ipaddr), rup->username, ucount, ucount==1?"":"s", rup->suspendreason->content);
32 }
33 }
34 }