]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/irc-write.h
New function IRC_SendWallops().
[ngircd-alex.git] / src / ngircd / irc-write.h
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2008 Alexander Barton (alex@barton.de)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  *
11  * Sending IRC commands over the network (header)
12  */
13
14 #ifndef __irc_write_h__
15 #define __irc_write_h__
16
17 GLOBAL bool IRC_WriteStrClient PARAMS((CLIENT *Client, char *Format, ...));
18 GLOBAL bool IRC_WriteStrClientPrefix PARAMS((CLIENT *Client, CLIENT *Prefix,
19                 char *Format, ...));
20
21 GLOBAL bool IRC_WriteStrChannel PARAMS((CLIENT *Client, CHANNEL *Chan,
22                 bool Remote, char *Format, ...));
23 GLOBAL bool IRC_WriteStrChannelPrefix PARAMS((CLIENT *Client, CHANNEL *Chan,
24                 CLIENT *Prefix, bool Remote, char *Format, ...));
25
26 GLOBAL void IRC_WriteStrServers PARAMS((CLIENT *ExceptOf, char *Format, ...));
27 GLOBAL void IRC_WriteStrServersPrefix PARAMS((CLIENT *ExceptOf, CLIENT *Prefix,
28                 char *Format, ...));
29 GLOBAL void IRC_WriteStrServersPrefixFlag PARAMS((CLIENT *ExceptOf,
30                 CLIENT *Prefix, char Flag, char *Format, ...));
31 GLOBAL void IRC_WriteStrServersPrefixFlag_CB PARAMS((CLIENT *ExceptOf,
32                 CLIENT *Prefix, char Flag,
33                 void (*callback)(CLIENT *, CLIENT *, void *), void *cb_data));
34
35 GLOBAL bool IRC_WriteStrRelatedPrefix PARAMS((CLIENT *Client, CLIENT *Prefix,
36                 bool Remote, char *Format, ...));
37
38 GLOBAL void IRC_SendWallops PARAMS((CLIENT *Client, CLIENT *From,
39                 const char *Message));
40
41 GLOBAL void IRC_SetPenalty PARAMS((CLIENT *Client, time_t Seconds));
42
43 #endif
44
45 /* -eof- */