ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid-7.2/include/s_conf.h
Revision: 33
Committed: Sun Oct 2 20:50:00 2005 UTC (18 years, 6 months ago) by knight
Content type: text/x-chdr
Original Path: ircd-hybrid/include/s_conf.h
File size: 18833 byte(s)
Log Message:
- svn:keywords

File Contents

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

Properties

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