27 |
|
|
28 |
|
#include "fdlist.h" |
29 |
|
|
30 |
– |
/* For those unfamiliar with GNU format attributes, a is the 1 based |
31 |
– |
* argument number of the format string, and b is the 1 based argument |
32 |
– |
* number of the variadic ... */ |
33 |
– |
#if 0 /* __GNUC__ */ |
34 |
– |
#define AFP(a,b) __attribute__((format (printf, a, b))) |
35 |
– |
#else |
36 |
– |
#define AFP(a,b) |
37 |
– |
#endif |
38 |
– |
|
30 |
|
/* |
31 |
|
* struct decls |
32 |
|
*/ |
35 |
|
struct Client; |
36 |
|
struct dlink_list; |
37 |
|
|
38 |
+ |
extern void *iosend_default(va_list); |
39 |
|
extern struct Callback *iosend_cb; |
48 |
– |
extern struct Callback *iosendctrl_cb; |
40 |
|
|
41 |
|
/* send.c prototypes */ |
42 |
|
|
43 |
|
extern void sendq_unblocked(fde_t *, struct Client *); |
44 |
|
extern void send_queued_write(struct Client *); |
54 |
– |
extern void send_queued_slink_write(struct Client *); |
45 |
|
extern void send_queued_all(void); |
46 |
< |
extern void sendto_one(struct Client *, const char *, ...) AFP(2, 3); |
46 |
> |
extern void sendto_one(struct Client *, const char *, ...); |
47 |
|
extern void sendto_channel_butone(struct Client *, struct Client *, |
48 |
|
struct Channel *, const char *, |
49 |
< |
const char *, ...) AFP(5, 6); |
49 |
> |
const char *, ...); |
50 |
|
extern void sendto_common_channels_local(struct Client *, int, |
51 |
< |
const char *, ...) AFP(3, 4); |
51 |
> |
const char *, ...); |
52 |
|
extern void sendto_channel_local(int, int, struct Channel *, |
53 |
< |
const char *, ...) AFP(4, 5); |
53 |
> |
const char *, ...); |
54 |
|
extern void sendto_channel_local_butone(struct Client *, int, struct Channel *, |
55 |
< |
const char *, ...) AFP(4, 5); |
55 |
> |
const char *, ...); |
56 |
|
extern void sendto_channel_remote(struct Client *, struct Client *, int, |
57 |
< |
int, int, struct Channel *, |
58 |
< |
const char *, ...) AFP(7, 8); |
59 |
< |
extern void sendto_server(struct Client *, struct Client *, |
60 |
< |
struct Channel *, unsigned long, |
61 |
< |
unsigned long, unsigned long, |
72 |
< |
const char *, ...) AFP(7, 8); |
57 |
> |
const unsigned int, const unsigned int, |
58 |
> |
struct Channel *, const char *, ...); |
59 |
> |
extern void sendto_server(struct Client *, const struct Channel *, |
60 |
> |
const unsigned int, |
61 |
> |
const unsigned int, const char *, ...); |
62 |
|
extern void sendto_match_butone(struct Client *, struct Client *, |
63 |
< |
char *, int, const char *, ...) AFP(5, 6); |
63 |
> |
char *, int, const char *, ...); |
64 |
|
extern void sendto_match_servs(struct Client *, const char *, int, |
65 |
< |
const char *, ...) AFP(4, 5); |
65 |
> |
const char *, ...); |
66 |
|
extern void sendto_realops_flags(unsigned int, int, |
67 |
< |
const char *, ...) AFP(3, 4); |
67 |
> |
const char *, ...); |
68 |
> |
extern void sendto_globops_flags(unsigned int, int, const char *, ...); |
69 |
|
extern void sendto_wallops_flags(unsigned int, struct Client *, |
70 |
< |
const char *, ...) AFP(3, 4); |
71 |
< |
extern void ts_warn(const char *, ...) AFP(1, 2); |
70 |
> |
const char *, ...); |
71 |
> |
extern void ts_warn(const char *, ...); |
72 |
|
|
73 |
|
extern void sendto_anywhere(struct Client *, struct Client *, |
74 |
< |
const char *, ...) AFP(3, 4); |
74 |
> |
const char *, ...); |
75 |
|
extern void kill_client(struct Client *, struct Client *, |
76 |
< |
const char *, ... ) AFP(3, 4); |
76 |
> |
const char *, ... ); |
77 |
|
extern void kill_client_ll_serv_butone(struct Client *, struct Client *, |
78 |
< |
const char *, ...) AFP(3, 4); |
78 |
> |
const char *, ...); |
79 |
|
|
80 |
|
|
81 |
|
#define ALL_MEMBERS 0 |
91 |
|
#define NOCAPS 0 /* no caps */ |
92 |
|
#define NOFLAGS 0 /* no flags */ |
93 |
|
|
104 |
– |
#define LL_ICLIENT 0x00000001 /* introduce unknown clients */ |
105 |
– |
#define LL_ICHAN 0x00000002 /* introduce unknown chans */ |
106 |
– |
|
94 |
|
/* used when sending to #mask or $mask */ |
95 |
|
#define MATCH_SERVER 1 |
96 |
|
#define MATCH_HOST 2 |