ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/include/conf.h
Revision: 1013
Committed: Sun Oct 18 14:26:49 2009 UTC (14 years, 5 months ago) by michael
Content type: text/x-chdr
Original Path: ircd-hybrid-7.2/include/s_conf.h
File size: 19064 byte(s)
Log Message:
- Add -Wextra -Wcast-align -Wbad-function-cast to CFLAGS if --enable-warnings is specified
- Fixed several compile warnings
- 64-bit cleanliness fixes, e.g., reorganize data structures to reduce storage/unnecessary padding

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3 * s_conf.h: A header for the configuration functions.
4 *
5 * Copyright (C) 2005 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 * $Id$
23 */
24
25 #ifndef INCLUDED_s_conf_h
26 #define INCLUDED_s_conf_h
27 #include "config.h"
28 #ifdef HAVE_LIBCRYPTO
29 #include <openssl/rsa.h>
30 #endif
31 #include "fileio.h" /* FBFILE */
32 #include "ircd_defs.h"
33 #include "motd.h" /* MessageFile */
34 #include "client.h"
35 #include "hook.h"
36
37
38 #define CONF_SERVER_INFO_TLS_VERSION_SSLV3 0x1
39 #define CONF_SERVER_INFO_TLS_VERSION_TLSV1 0x2
40
41 struct Client;
42
43 extern struct Callback *client_check_cb;
44
45 struct conf_parser_context
46 {
47 unsigned int boot;
48 unsigned int pass;
49 FBFILE *conf_file;
50 };
51
52 extern struct conf_parser_context conf_parser_ctx;
53
54 typedef enum
55 {
56 CONF_TYPE,
57 CLASS_TYPE,
58 OPER_TYPE,
59 CLIENT_TYPE,
60 SERVER_TYPE,
61 HUB_TYPE,
62 LEAF_TYPE,
63 KLINE_TYPE,
64 DLINE_TYPE,
65 EXEMPTDLINE_TYPE,
66 CLUSTER_TYPE,
67 RKLINE_TYPE,
68 RXLINE_TYPE,
69 XLINE_TYPE,
70 ULINE_TYPE,
71 GLINE_TYPE,
72 CRESV_TYPE,
73 NRESV_TYPE,
74 GDENY_TYPE
75 } ConfType;
76
77 struct split_nuh_item
78 {
79 dlink_node node;
80
81 char *nuhmask;
82 char *nickptr;
83 char *userptr;
84 char *hostptr;
85
86 size_t nicksize;
87 size_t usersize;
88 size_t hostsize;
89 };
90
91 struct ConfItem
92 {
93 dlink_node node; /* link into known ConfItems of this type */
94
95 char *name; /* Primary key */
96 void *regexpname;
97 unsigned int flags;
98 ConfType type;
99 };
100
101 /*
102 * MatchItem - used for XLINE and ULINE types
103 */
104 struct MatchItem
105 {
106 char *user; /* Used for ULINE only */
107 char *host; /* Used for ULINE only */
108 char *reason;
109 char *oper_reason;
110 int action; /* used for uline */
111 int count; /* How many times this matchitem has been matched */
112 int ref_count; /* How many times is this matchitem in use */
113 int illegal; /* Should it be deleted when possible? */
114 time_t hold; /* Hold action until this time (calendar time) */
115 };
116
117 struct AccessItem
118 {
119 dlink_node node;
120 unsigned int dns_failed;
121 unsigned int dns_pending;
122 unsigned int status; /* If CONF_ILLEGAL, delete when no clients */
123 unsigned int flags;
124 unsigned int modes;
125 unsigned int port;
126 int clients; /* Number of *LOCAL* clients using this */
127 struct irc_ssaddr my_ipnum; /* ip to bind to for outgoing connect */
128 struct irc_ssaddr ipnum; /* ip to connect to */
129 char * host; /* host part of user@host */
130 char * passwd;
131 char * spasswd; /* Password to send. */
132 char * reason;
133 char * oper_reason;
134 char * user; /* user part of user@host */
135 char * fakename; /* Mask name */
136 time_t hold; /* Hold action until this time (calendar time) */
137 struct ConfItem *class_ptr; /* Class of connection */
138 int aftype;
139 #ifdef HAVE_LIBCRYPTO
140 char * rsa_public_key_file;
141 RSA * rsa_public_key;
142 struct EncCapability *cipher_preference;
143 #endif
144 void *regexuser;
145 void *regexhost;
146 };
147
148 struct ClassItem
149 {
150 dlink_list list_ipv4; /* base of per cidr ipv4 client link list */
151 dlink_list list_ipv6; /* base of per cidr ipv6 client link list */
152 unsigned int max_sendq;
153 int con_freq;
154 int ping_freq;
155 int ping_warning;
156 int max_total;
157 int max_local;
158 int max_global;
159 int max_ident;
160 int max_perip;
161 int curr_user_count;
162 int cidr_bitlen_ipv4;
163 int cidr_bitlen_ipv6;
164 int number_per_cidr;
165 int active;
166 };
167
168 struct CidrItem
169 {
170 dlink_node node;
171 struct irc_ssaddr mask;
172 int number_on_this_cidr;
173 };
174
175 #define ConFreq(x) ((x)->con_freq)
176 #define PingFreq(x) ((x)->ping_freq)
177 #define PingWarning(x) ((x)->ping_warning)
178 #define MaxTotal(x) ((x)->max_total)
179 #define MaxGlobal(x) ((x)->max_global)
180 #define MaxLocal(x) ((x)->max_local)
181 #define MaxIdent(x) ((x)->max_ident)
182 #define MaxPerIp(x) ((x)->max_perip)
183 #define MaxSendq(x) ((x)->max_sendq)
184 #define CurrUserCount(x) ((x)->curr_user_count)
185 #define CidrBitlenIPV4(x) ((x)->cidr_bitlen_ipv4)
186 #define CidrBitlenIPV6(x) ((x)->cidr_bitlen_ipv6)
187 #define NumberPerCidr(x) ((x)->number_per_cidr)
188
189 #define ClassPtr(x) ((x)->class_ptr)
190
191
192 #define CONF_ILLEGAL 0x80000000
193 #define CONF_RESERVED 0x00000001
194 #define CONF_CLIENT 0x00000002
195 #define CONF_SERVER 0x00000004
196 #define CONF_OPERATOR 0x00000008
197 #define CONF_KILL 0x00000010
198 #define CONF_KLINE CONF_KILL
199 #define CONF_CLASS 0x00000020
200 #define CONF_LEAF 0x00000040
201 #define CONF_LISTEN_PORT 0x00000080
202 #define CONF_HUB 0x00000100
203 #define CONF_EXEMPTKLINE 0x00000200
204 #define CONF_NOLIMIT 0x00000400
205 #define CONF_DLINE 0x00000800
206 #define CONF_XLINE 0x00001000
207 #define CONF_ULINE 0x00002000
208 #define CONF_EXEMPTDLINE 0x00004000
209 #define CONF_GLINE 0x00008000
210
211 #define CONF_SERVER_MASK CONF_SERVER
212 #define CONF_CLIENT_MASK (CONF_CLIENT | CONF_OPERATOR | CONF_SERVER_MASK)
213
214 /* XXX temporary hack */
215 #define CONF_CRESV 0x80000001
216 #define CONF_NRESV 0x80000002
217
218 #define IsConfIllegal(x) ((x)->status & CONF_ILLEGAL)
219 #define SetConfIllegal(x) ((x)->status |= CONF_ILLEGAL)
220 #define IsConfServer(x) ((x)->status == CONF_SERVER)
221 #define SetConfServer(x) ((x)->status = CONF_SERVER)
222 #define IsConfOperator(x) ((x)->status & CONF_OPERATOR)
223 #define IsConfHub(x) ((x)->status == CONF_HUB)
224 #define SetConfHub(x) ((x)->status = CONF_HUB)
225 #define IsConfLeaf(x) ((x)->status == CONF_LEAF)
226 #define SetConfLeaf(x) ((x)->status = CONF_LEAF)
227 #define IsConfHubOrLeaf(x) ((x)->status & (CONF_HUB|CONF_LEAF))
228 #define IsConfKill(x) ((x)->status == CONF_KILL)
229 #define IsConfClient(x) ((x)->status & CONF_CLIENT)
230 #define IsConfTypeOfClient(x) ((x)->status & CONF_CLIENT_MASK)
231 #define IsConfUline(x) ((x)->status & CONF_ULINE)
232 #define IsConfXline(x) ((x)->status & CONF_XLINE)
233 #define IsConfGline(x) ((x)->status == CONF_GLINE)
234
235 /* AccessItem->flags */
236
237 /* Generic flags... */
238 /* access flags... */
239 #define CONF_FLAGS_DO_IDENTD 0x00000001
240 #define CONF_FLAGS_LIMIT_IP 0x00000002
241 #define CONF_FLAGS_NO_TILDE 0x00000004
242 #define CONF_FLAGS_NEED_IDENTD 0x00000008
243 /* 0x00000010 */
244 #define CONF_FLAGS_NOMATCH_IP 0x00000020
245 #define CONF_FLAGS_EXEMPTKLINE 0x00000040
246 #define CONF_FLAGS_NOLIMIT 0x00000080
247 #define CONF_FLAGS_IDLE_LINED 0x00000100
248 #define CONF_FLAGS_SPOOF_IP 0x00000200
249 #define CONF_FLAGS_SPOOF_NOTICE 0x00000400
250 #define CONF_FLAGS_REDIR 0x00000800
251 #define CONF_FLAGS_EXEMPTGLINE 0x00001000
252 #define CONF_FLAGS_RESTRICTED 0x00002000
253 #define CONF_FLAGS_CAN_FLOOD 0x00100000
254 #define CONF_FLAGS_NEED_PASSWORD 0x00200000
255 /* server flags */
256 #define CONF_FLAGS_ALLOW_AUTO_CONN 0x00004000
257 #define CONF_FLAGS_LAZY_LINK 0x00008000
258 #define CONF_FLAGS_ENCRYPTED 0x00010000
259 #define CONF_FLAGS_COMPRESSED 0x00020000
260 #define CONF_FLAGS_TEMPORARY 0x00040000
261 #define CONF_FLAGS_CRYPTLINK 0x00080000
262 #define CONF_FLAGS_BURST_AWAY 0x00400000
263 #define CONF_FLAGS_EXEMPTRESV 0x00800000
264 #define CONF_FLAGS_TOPICBURST 0x01000000
265
266 /* Macros for struct AccessItem */
267 #define IsLimitIp(x) ((x)->flags & CONF_FLAGS_LIMIT_IP)
268 #define IsNoTilde(x) ((x)->flags & CONF_FLAGS_NO_TILDE)
269 #define IsConfCanFlood(x) ((x)->flags & CONF_FLAGS_CAN_FLOOD)
270 #define IsNeedPassword(x) ((x)->flags & CONF_FLAGS_NEED_PASSWORD)
271 #define IsNeedIdentd(x) ((x)->flags & CONF_FLAGS_NEED_IDENTD)
272 #define IsNoMatchIp(x) ((x)->flags & CONF_FLAGS_NOMATCH_IP)
273 #define IsConfExemptKline(x) ((x)->flags & CONF_FLAGS_EXEMPTKLINE)
274 #define IsConfExemptLimits(x) ((x)->flags & CONF_FLAGS_NOLIMIT)
275 #define IsConfExemptGline(x) ((x)->flags & CONF_FLAGS_EXEMPTGLINE)
276 #define IsConfExemptResv(x) ((x)->flags & CONF_FLAGS_EXEMPTRESV)
277 #define IsConfIdlelined(x) ((x)->flags & CONF_FLAGS_IDLE_LINED)
278 #define IsConfDoIdentd(x) ((x)->flags & CONF_FLAGS_DO_IDENTD)
279 #define IsConfDoSpoofIp(x) ((x)->flags & CONF_FLAGS_SPOOF_IP)
280 #define IsConfSpoofNotice(x) ((x)->flags & CONF_FLAGS_SPOOF_NOTICE)
281 #define IsConfRestricted(x) ((x)->flags & CONF_FLAGS_RESTRICTED)
282 #define IsConfEncrypted(x) ((x)->flags & CONF_FLAGS_ENCRYPTED)
283 #define SetConfEncrypted(x) ((x)->flags |= CONF_FLAGS_ENCRYPTED)
284 #define ClearConfEncrypted(x) ((x)->flags &= ~CONF_FLAGS_ENCRYPTED)
285 #define IsConfCompressed(x) ((x)->flags & CONF_FLAGS_COMPRESSED)
286 #define SetConfCompressed(x) ((x)->flags |= CONF_FLAGS_COMPRESSED)
287 #define ClearConfCompressed(x) ((x)->flags &= ~CONF_FLAGS_COMPRESSED)
288 #define IsConfCryptLink(x) ((x)->flags & CONF_FLAGS_CRYPTLINK)
289 #define SetConfCryptLink(x) ((x)->flags |= CONF_FLAGS_CRYPTLINK)
290 #define ClearConfCryptLink(x) ((x)->flags &= ~CONF_FLAGS_CRYPTLINK)
291 #define IsConfAllowAutoConn(x) ((x)->flags & CONF_FLAGS_ALLOW_AUTO_CONN)
292 #define SetConfAllowAutoConn(x) ((x)->flags |= CONF_FLAGS_ALLOW_AUTO_CONN)
293 #define ClearConfAllowAutoConn(x) ((x)->flags &= ~CONF_FLAGS_ALLOW_AUTO_CONN)
294 #define IsConfTemporary(x) ((x)->flags & CONF_FLAGS_TEMPORARY)
295 #define SetConfTemporary(x) ((x)->flags |= CONF_FLAGS_TEMPORARY)
296 #define IsConfRedir(x) ((x)->flags & CONF_FLAGS_REDIR)
297 #define IsConfAwayBurst(x) ((x)->flags & CONF_FLAGS_BURST_AWAY)
298 #define SetConfAwayBurst(x) ((x)->flags |= CONF_FLAGS_BURST_AWAY)
299 #define ClearConfAwayBurst(x) ((x)->flags &= ~CONF_FLAGS_BURST_AWAY)
300 #define IsConfTopicBurst(x) ((x)->flags & CONF_FLAGS_TOPICBURST)
301 #define SetConfTopicBurst(x) ((x)->flags |= CONF_FLAGS_TOPICBURST)
302 #define ClearConfTopicBurst(x) ((x)->flags &= ~CONF_FLAGS_TOPICBURST)
303
304 /* shared/cluster server entry types
305 * These defines are used for both shared and cluster.
306 */
307 #define SHARED_KLINE 0x0001
308 #define SHARED_TKLINE 0x0002
309 #define SHARED_UNKLINE 0x0004
310 #define SHARED_XLINE 0x0008
311 #define SHARED_TXLINE 0x0010
312 #define SHARED_UNXLINE 0x0020
313 #define SHARED_RESV 0x0040
314 #define SHARED_TRESV 0x0080
315 #define SHARED_UNRESV 0x0100
316 #define SHARED_LOCOPS 0x0200
317 #define SHARED_ALL (SHARED_KLINE | SHARED_TKLINE | SHARED_UNKLINE | \
318 SHARED_XLINE | SHARED_TXLINE | SHARED_UNXLINE | \
319 SHARED_RESV | SHARED_TRESV | SHARED_UNRESV |\
320 SHARED_LOCOPS)
321
322 /* gline acl entry actions */
323 #define GDENY_BLOCK 0x1
324 #define GDENY_REJECT 0x2
325
326 struct config_file_entry
327 {
328 const char *dpath; /* DPATH if set from command line */
329 const char *configfile;
330 const char *klinefile;
331 const char *xlinefile;
332 const char *rxlinefile;
333 const char *rklinefile;
334 const char *dlinefile;
335 const char *glinefile;
336 const char *cresvfile;
337 const char *nresvfile;
338
339 char *logpath;
340 char *operlog;
341
342 char *servlink_path;
343 char *egdpool_path;
344
345 MessageFile motd;
346 MessageFile opermotd;
347 MessageFile linksfile;
348
349 unsigned char compression_level;
350 int gline_min_cidr;
351 int gline_min_cidr6;
352 int dot_in_ip6_addr;
353 int dots_in_ident;
354 int failed_oper_notice;
355 int anti_spam_exit_message_time;
356 unsigned int max_accept;
357 unsigned int max_watch;
358 int max_nick_time;
359 unsigned int max_nick_changes;
360 int ts_max_delta;
361 int ts_warn_delta;
362 int anti_nick_flood;
363 int kline_with_reason;
364 int warn_no_nline;
365 int invisible_on_connect;
366 int stats_e_disabled;
367 int stats_o_oper_only;
368 int stats_k_oper_only;
369 int stats_i_oper_only;
370 int stats_P_oper_only;
371 int short_motd;
372 int no_oper_flood;
373 int true_no_oper_flood;
374 int oper_pass_resv;
375 int glines;
376 int hide_spoof_ips;
377 int burst_away;
378 int use_whois_actually;
379 int tkline_expire_notices;
380 int opers_bypass_callerid;
381 int ignore_bogus_ts;
382 char *kline_reason;
383 int pace_wait;
384 int pace_wait_simple;
385 int gline_time;
386 int gline_logging;
387 int idletime;
388 int oper_only_umodes;
389 int oper_umodes;
390 int max_targets;
391 int caller_id_wait;
392 int min_nonwildcard;
393 int min_nonwildcard_simple;
394 int kill_chase_time_limit;
395 int default_floodcount;
396 int client_flood;
397 /* 0 == don't use throttle... */
398 int throttle_time;
399 int use_egd;
400 int ping_cookie;
401 int disable_auth;
402 int disable_remote;
403 #ifdef HAVE_LIBCRYPTO
404 struct EncCapability *default_cipher_preference;
405 #endif
406 };
407
408 struct config_channel_entry
409 {
410 int disable_fake_channels;
411 int restrict_channels;
412 int disable_local_channels;
413 int use_except;
414 int use_invex;
415 int use_knock;
416 int knock_delay;
417 int knock_delay_channel;
418 unsigned int max_bans;
419 unsigned int max_chans_per_user;
420 int no_create_on_split;
421 int no_join_on_split;
422 int quiet_on_ban;
423 int burst_topicwho;
424 int default_split_server_count;
425 int default_split_user_count;
426 };
427
428 struct config_server_hide
429 {
430 char *hidden_name;
431 int flatten_links;
432 int hide_servers;
433 int links_delay;
434 int links_disabled;
435 int hidden;
436 int disable_hidden;
437 int hide_server_ips;
438 };
439
440 struct server_info
441 {
442 char *sid;
443 char *name;
444 char *description;
445 char *network_name;
446 char *network_desc;
447 #ifdef HAVE_LIBCRYPTO
448 char *rsa_private_key_file;
449 RSA *rsa_private_key;
450 SSL_CTX *server_ctx;
451 SSL_CTX *client_ctx;
452 unsigned int tls_version;
453 #endif
454 int hub;
455 struct irc_ssaddr ip;
456 struct irc_ssaddr ip6;
457 unsigned int max_clients;
458 int specific_ipv4_vhost;
459 int specific_ipv6_vhost;
460 struct sockaddr_in dns_host;
461 int can_use_v6;
462 };
463
464 struct admin_info
465 {
466 char *name;
467 char *description;
468 char *email;
469 };
470
471 struct logging_entry
472 {
473 unsigned int use_logging;
474 char operlog[PATH_MAX + 1];
475 char userlog[PATH_MAX + 1];
476 char glinelog[PATH_MAX + 1];
477 char ioerrlog[PATH_MAX + 1];
478 char klinelog[PATH_MAX + 1];
479 char killlog[PATH_MAX + 1];
480 char operspylog[PATH_MAX + 1];
481 char failed_operlog[PATH_MAX + 1];
482 };
483
484 extern dlink_list gdeny_items;
485 extern dlink_list class_items;
486 extern dlink_list server_items;
487 extern dlink_list cluster_items;
488 extern dlink_list hub_items;
489 extern dlink_list rxconf_items;
490 extern dlink_list rkconf_items;
491 extern dlink_list leaf_items;
492 extern dlink_list temporary_klines;
493 extern dlink_list temporary_dlines;
494 extern dlink_list temporary_glines;
495 extern dlink_list temporary_xlines;
496 extern dlink_list temporary_rxlines;
497 extern dlink_list temporary_rklines;
498 extern struct logging_entry ConfigLoggingEntry;
499 extern struct config_file_entry ConfigFileEntry;/* defined in ircd.c*/
500 extern struct config_channel_entry ConfigChannel;/* defined in channel.c*/
501 extern struct config_server_hide ConfigServerHide; /* defined in s_conf.c */
502 extern struct server_info ServerInfo; /* defined in ircd.c */
503 extern struct admin_info AdminInfo; /* defined in ircd.c */
504 extern int valid_wild_card(struct Client *, int, int, ...);
505 /* End GLOBAL section */
506
507 extern unsigned int get_sendq(struct Client *);
508 extern const char *get_client_class(struct Client *);
509 extern int get_client_ping(struct Client *, int *);
510 extern void check_class(void);
511 extern void init_class(void);
512 extern struct ConfItem *find_class(const char *);
513 extern void init_ip_hash_table(void);
514 extern void count_ip_hash(unsigned int *, uint64_t *);
515 extern void remove_one_ip(struct irc_ssaddr *);
516 extern struct ConfItem *make_conf_item(ConfType type);
517 extern void free_access_item(struct AccessItem *);
518 extern void read_conf_files(int);
519 extern int attach_conf(struct Client *, struct ConfItem *);
520 extern int attach_connect_block(struct Client *, const char *, const char *);
521
522 extern int detach_conf(struct Client *, ConfType);
523
524 extern struct ConfItem *find_conf_name(dlink_list *, const char *, ConfType);
525 extern struct ConfItem *find_conf_exact(ConfType, const char *, const char *, const char *);
526 extern struct AccessItem *find_kill(struct Client *);
527 extern struct AccessItem *find_gline(struct Client *);
528 extern int conf_connect_allowed(struct irc_ssaddr *, int);
529 extern char *oper_privs_as_string(const unsigned int);
530 extern void split_nuh(struct split_nuh_item *);
531 extern struct ConfItem *find_matching_name_conf(ConfType, const char *,
532 const char *, const char *, int);
533 extern struct ConfItem *find_exact_name_conf(ConfType, const char *,
534 const char *, const char *);
535 extern void delete_conf_item(struct ConfItem *);
536 extern void report_confitem_types(struct Client *, ConfType, int);
537 extern void yyerror(const char *);
538 extern int conf_yy_fatal_error(const char *);
539 extern int conf_fbgets(char *, unsigned int, FBFILE *);
540 extern void write_conf_line(struct Client *, struct ConfItem *,
541 const char *, time_t);
542 extern int remove_conf_line(ConfType, struct Client *, const char *,
543 const char *);
544 extern void add_temp_line(struct ConfItem *);
545 extern void cleanup_tklines(void *);
546 extern const char *get_conf_name(ConfType);
547 extern int rehash(int);
548 extern int conf_add_server(struct ConfItem *, const char *);
549 extern void conf_add_class_to_conf(struct ConfItem *, const char *);
550
551 /* XXX consider moving these into csvlib.h */
552 extern void parse_csv_file(FBFILE *, ConfType);
553
554 extern char *get_oper_name(const struct Client *);
555
556 extern void *map_to_conf(struct ConfItem *);
557 extern struct ConfItem *unmap_conf_item(void *);
558 /* XXX should the parse_aline stuff go into another file ?? */
559 #define AWILD 0x1 /* check wild cards */
560 #define NOUSERLOOKUP 0x2 /* Don't lookup the user@host on /rkline nick */
561 extern int parse_aline(const char *, struct Client *, int, char **,
562 int, char **, char **, time_t *, char **, char **);
563 extern int valid_comment(struct Client *, char *, int);
564
565
566 #define TK_SECONDS 0
567 #define TK_MINUTES 1
568 extern time_t valid_tkline(char *, int);
569 extern int match_conf_password(const char *, const struct AccessItem *);
570
571 #define NOT_AUTHORIZED (-1)
572 #define I_LINE_FULL (-2)
573 #define TOO_MANY (-3)
574 #define BANNED_CLIENT (-4)
575 #define TOO_FAST (-5)
576
577 #define CLEANUP_TKLINES_TIME 60
578
579 extern void cluster_a_line(struct Client *,
580 const char *, int, int, const char *,...);
581 extern void rebuild_cidr_class(struct ConfItem *, struct ClassItem *);
582
583 /* XXX **/
584 extern int yylex(void);
585
586 #endif /* INCLUDED_s_conf_h */

Properties

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