ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/include/send.h
Revision: 190
Committed: Sun Oct 23 22:06:17 2005 UTC (20 years, 9 months ago) by adx
Content type: text/x-chdr
File size: 4305 byte(s)
Log Message:
* prototypes are now prefixed with either nothing or EXTERN
  (meaning it's an ircd.dll API)
* dynamic modules now work on win32.

File Contents

# User Rev Content
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    
29     /* For those unfamiliar with GNU format attributes, a is the 1 based
30     * argument number of the format string, and b is the 1 based argument
31     * number of the variadic ... */
32     #if 0 /* __GNUC__ */
33     #define AFP(a,b) __attribute__((format (printf, a, b)))
34     #else
35     #define AFP(a,b)
36     #endif
37    
38     /*
39     * struct decls
40     */
41     struct Callback;
42     struct Channel;
43     struct Client;
44     struct dlink_list;
45    
46 adx 190 void *iosend_default(va_list);
47     void sendq_unblocked(fde_t *, struct Client *);
48     EXTERN struct Callback *iosend_cb;
49     EXTERN struct Callback *iosendctrl_cb;
50 adx 30
51     /* send.c prototypes */
52    
53 adx 190 EXTERN void send_queued_write(struct Client *);
54     EXTERN void send_queued_slink_write(struct Client *);
55     EXTERN void send_queued_all(void);
56     EXTERN void sendto_one(struct Client *, const char *, ...) AFP(2, 3);
57     EXTERN void sendto_channel_butone(struct Client *, struct Client *,
58 adx 30 struct Channel *, const char *,
59     const char *, ...) AFP(5, 6);
60 adx 190 EXTERN void sendto_common_channels_local(struct Client *, int,
61 adx 30 const char *, ...) AFP(3, 4);
62 adx 190 EXTERN void sendto_channel_local(int, int, struct Channel *,
63 adx 30 const char *, ...) AFP(4, 5);
64 adx 190 EXTERN void sendto_channel_local_butone(struct Client *, int, struct Channel *,
65 adx 30 const char *, ...) AFP(4, 5);
66 adx 190 EXTERN void sendto_channel_remote(struct Client *, struct Client *, int,
67 adx 30 int, int, struct Channel *,
68     const char *, ...) AFP(7, 8);
69 adx 190 EXTERN void sendto_server(struct Client *, struct Client *,
70 adx 30 struct Channel *, unsigned long,
71     unsigned long, unsigned long,
72     const char *, ...) AFP(7, 8);
73 adx 190 EXTERN void sendto_match_butone(struct Client *, struct Client *,
74 adx 30 char *, int, const char *, ...) AFP(5, 6);
75 adx 190 EXTERN void sendto_match_servs(struct Client *, const char *, int,
76 adx 30 const char *, ...) AFP(4, 5);
77 adx 190 EXTERN void sendto_realops_flags(unsigned int, int,
78 adx 30 const char *, ...) AFP(3, 4);
79 adx 190 EXTERN void sendto_wallops_flags(unsigned int, struct Client *,
80 adx 30 const char *, ...) AFP(3, 4);
81 adx 190 EXTERN void ts_warn(const char *, ...) AFP(1, 2);
82 adx 30
83 adx 190 EXTERN void sendto_anywhere(struct Client *, struct Client *,
84 adx 30 const char *, ...) AFP(3, 4);
85 adx 190 EXTERN void kill_client(struct Client *, struct Client *,
86 adx 30 const char *, ... ) AFP(3, 4);
87 adx 190 EXTERN void kill_client_ll_serv_butone(struct Client *, struct Client *,
88 adx 30 const char *, ...) AFP(3, 4);
89    
90    
91     #define ALL_MEMBERS 0
92     #define NON_CHANOPS 1
93     #define ONLY_CHANOPS_VOICED 2
94     #define ONLY_CHANOPS 3
95     #define ONLY_SERVERS 4 /* for channel_mode.c */
96    
97     #define L_ALL 0
98     #define L_OPER 1
99     #define L_ADMIN 2
100    
101     #define NOCAPS 0 /* no caps */
102     #define NOFLAGS 0 /* no flags */
103    
104     #define LL_ICLIENT 0x00000001 /* introduce unknown clients */
105     #define LL_ICHAN 0x00000002 /* introduce unknown chans */
106    
107     /* used when sending to #mask or $mask */
108     #define MATCH_SERVER 1
109     #define MATCH_HOST 2
110    
111     #endif /* INCLUDED_send_h */

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision