| 1 |
adx |
30 |
/* |
| 2 |
|
|
* ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd). |
| 3 |
|
|
* send.h: A header for the message sending functions. |
| 4 |
|
|
* |
| 5 |
|
|
* Copyright (C) 2002 by the past and present ircd coders, and others. |
| 6 |
|
|
* |
| 7 |
|
|
* This program is free software; you can redistribute it and/or modify |
| 8 |
|
|
* it under the terms of the GNU General Public License as published by |
| 9 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
| 10 |
|
|
* (at your option) any later version. |
| 11 |
|
|
* |
| 12 |
|
|
* This program is distributed in the hope that it will be useful, |
| 13 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 |
|
|
* GNU General Public License for more details. |
| 16 |
|
|
* |
| 17 |
|
|
* You should have received a copy of the GNU General Public License |
| 18 |
|
|
* along with this program; if not, write to the Free Software |
| 19 |
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 |
| 20 |
|
|
* USA |
| 21 |
|
|
* |
| 22 |
knight |
31 |
* $Id$ |
| 23 |
adx |
30 |
*/ |
| 24 |
|
|
|
| 25 |
|
|
#ifndef INCLUDED_send_h |
| 26 |
|
|
#define INCLUDED_send_h |
| 27 |
|
|
|
| 28 |
|
|
#include "fdlist.h" |
| 29 |
|
|
|
| 30 |
|
|
/* |
| 31 |
|
|
* struct decls |
| 32 |
|
|
*/ |
| 33 |
|
|
struct Callback; |
| 34 |
|
|
struct Channel; |
| 35 |
|
|
struct Client; |
| 36 |
|
|
struct dlink_list; |
| 37 |
|
|
|
| 38 |
adx |
163 |
extern void *iosend_default(va_list); |
| 39 |
adx |
30 |
extern struct Callback *iosend_cb; |
| 40 |
|
|
|
| 41 |
|
|
/* send.c prototypes */ |
| 42 |
|
|
|
| 43 |
|
|
extern void sendq_unblocked(fde_t *, struct Client *); |
| 44 |
|
|
extern void send_queued_write(struct Client *); |
| 45 |
|
|
extern void send_queued_all(void); |
| 46 |
michael |
1015 |
extern void sendto_one(struct Client *, const char *, ...); |
| 47 |
adx |
30 |
extern void sendto_channel_butone(struct Client *, struct Client *, |
| 48 |
michael |
1479 |
struct Channel *, unsigned int, |
| 49 |
michael |
1015 |
const char *, ...); |
| 50 |
adx |
30 |
extern void sendto_common_channels_local(struct Client *, int, |
| 51 |
michael |
1015 |
const char *, ...); |
| 52 |
adx |
30 |
extern void sendto_channel_local(int, int, struct Channel *, |
| 53 |
michael |
1015 |
const char *, ...); |
| 54 |
adx |
30 |
extern void sendto_channel_local_butone(struct Client *, int, struct Channel *, |
| 55 |
michael |
1015 |
const char *, ...); |
| 56 |
adx |
30 |
extern void sendto_channel_remote(struct Client *, struct Client *, int, |
| 57 |
michael |
1015 |
const unsigned int, const unsigned int, |
| 58 |
|
|
struct Channel *, const char *, ...); |
| 59 |
michael |
1474 |
extern void sendto_server(struct Client *, |
| 60 |
michael |
1015 |
const unsigned int, |
| 61 |
|
|
const unsigned int, const char *, ...); |
| 62 |
adx |
30 |
extern void sendto_match_butone(struct Client *, struct Client *, |
| 63 |
michael |
1015 |
char *, int, const char *, ...); |
| 64 |
adx |
30 |
extern void sendto_match_servs(struct Client *, const char *, int, |
| 65 |
michael |
1015 |
const char *, ...); |
| 66 |
adx |
30 |
extern void sendto_realops_flags(unsigned int, int, |
| 67 |
michael |
1015 |
const char *, ...); |
| 68 |
michael |
1206 |
extern void sendto_globops_flags(unsigned int, int, const char *, ...); |
| 69 |
adx |
30 |
extern void sendto_wallops_flags(unsigned int, struct Client *, |
| 70 |
michael |
1015 |
const char *, ...); |
| 71 |
|
|
extern void ts_warn(const char *, ...); |
| 72 |
adx |
30 |
|
| 73 |
|
|
extern void sendto_anywhere(struct Client *, struct Client *, |
| 74 |
michael |
1015 |
const char *, ...); |
| 75 |
adx |
30 |
extern void kill_client(struct Client *, struct Client *, |
| 76 |
michael |
1015 |
const char *, ... ); |
| 77 |
adx |
30 |
extern void kill_client_ll_serv_butone(struct Client *, struct Client *, |
| 78 |
michael |
1015 |
const char *, ...); |
| 79 |
adx |
30 |
|
| 80 |
|
|
|
| 81 |
|
|
#define ALL_MEMBERS 0 |
| 82 |
|
|
#define NON_CHANOPS 1 |
| 83 |
|
|
#define ONLY_CHANOPS_VOICED 2 |
| 84 |
|
|
#define ONLY_CHANOPS 3 |
| 85 |
|
|
#define ONLY_SERVERS 4 /* for channel_mode.c */ |
| 86 |
|
|
|
| 87 |
|
|
#define L_ALL 0 |
| 88 |
|
|
#define L_OPER 1 |
| 89 |
|
|
#define L_ADMIN 2 |
| 90 |
|
|
|
| 91 |
|
|
#define NOCAPS 0 /* no caps */ |
| 92 |
|
|
#define NOFLAGS 0 /* no flags */ |
| 93 |
|
|
|
| 94 |
|
|
/* used when sending to #mask or $mask */ |
| 95 |
|
|
#define MATCH_SERVER 1 |
| 96 |
|
|
#define MATCH_HOST 2 |
| 97 |
|
|
|
| 98 |
|
|
#endif /* INCLUDED_send_h */ |