2 * IRC - Internet Relay Chat, contrib/m_findforwards.c
3 * Copyright (C) 2002 Hybrid Development Team
4 * Copyright (C) 2004 ircd-ratbox Development Team
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 1, or (at your option)
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 * $Id: m_findforwards.c 26 2006-09-20 18:02:06Z spb $
27 #include "irc_string.h"
32 #include "s_newconf.h"
39 static int m_findforwards(struct Client
*client_p
, struct Client
*source_p
,
40 int parc
, const char *parv
[]);
42 struct Message findforwards_msgtab
= {
43 "FINDFORWARDS", 0, 0, 0, MFLG_SLOW
,
44 {mg_unreg
, {m_findforwards
, 2}, mg_ignore
, mg_ignore
, mg_ignore
, {m_findforwards
, 2}}
47 mapi_clist_av1 findforwards_clist
[] = { &findforwards_msgtab
, NULL
};
49 DECLARE_MODULE_AV1(findforwards
, NULL
, NULL
, findforwards_clist
, NULL
, NULL
, "$Revision: 26 $");
53 ** parv[0] = sender prefix
57 m_findforwards(struct Client
*client_p
, struct Client
*source_p
, int parc
, const char *parv
[])
59 static time_t last_used
= 0;
60 struct Channel
*chptr
;
61 struct membership
*msptr
;
64 char *p
= buf
, *end
= buf
+ sizeof buf
- 1;
67 /* Allow ircops to search for forwards to nonexistent channels */
70 if((chptr
= find_channel(parv
[1])) == NULL
|| (msptr
= find_channel_membership(chptr
, source_p
)) == NULL
)
72 sendto_one_numeric(source_p
, ERR_NOTONCHANNEL
,
73 form_str(ERR_NOTONCHANNEL
), parv
[1]);
79 sendto_one(source_p
, form_str(ERR_CHANOPRIVSNEEDED
),
80 me
.name
, source_p
->name
, parv
[1]);
84 if((last_used
+ ConfigFileEntry
.pace_wait
) > CurrentTime
)
86 sendto_one(source_p
, form_str(RPL_LOAD2HI
),
87 me
.name
, source_p
->name
, "FINDFORWARDS");
91 last_used
= CurrentTime
;
94 DLINK_FOREACH(ptr
, global_channel_list
.head
)
97 if(chptr
->mode
.forward
&& !irccmp(chptr
->mode
.forward
, parv
[1]))
99 if(p
+ strlen(chptr
->chname
) >= end
- 13)
101 strcpy(p
, "<truncated> ");
105 strcpy(p
, chptr
->chname
);
106 p
+= strlen(chptr
->chname
);
114 sendto_one_notice(source_p
, ":Forwards for %s: %s", parv
[1], buf
);