]> jfr.im git - solanum.git/blame - include/tgchange.h
ircd/authproc.c: avoid crash on lack of any configured DNSBLs
[solanum.git] / include / tgchange.h
CommitLineData
4f2685f3 1/*
a6f63a82 2 * Solanum: a slightly advanced ircd
4f2685f3
JT
3 *
4 * Copyright (C) 2004-2005 Lee Hardy <lee@leeh.co.uk>
5 * Copyright (C) 2005-2010 Jilles Tjoelker <jilles@stack.nl>
6 * Copyright (C) 2004-2005 ircd-ratbox development team
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 * USA
22 */
23
24#ifndef INCLUDED_tgchange_h
25#define INCLUDED_tgchange_h
26
27#include "ircd_defs.h"
77d3d2db
KB
28#include "client.h"
29#include "channel.h"
4f2685f3
JT
30
31/* finds a channel where source_p has op or voice and target_p is a member */
32struct Channel *find_allowing_channel(struct Client *source_p, struct Client *target_p);
33/* checks if source_p is allowed to send to target_p */
34int add_target(struct Client *source_p, struct Client *target_p);
717238d2
JT
35/* checks if source_p is allowed to send to chptr */
36int add_channel_target(struct Client *source_p, struct Channel *chptr);
4f2685f3
JT
37/* allows source_p to send to target_p */
38void add_reply_target(struct Client *source_p, struct Client *target_p);
39
40#endif /* INCLUDED_tgchange_h */