2 * ircd-ratbox: A slightly useful ircd.
3 * ircd.h: A header for the ircd startup routines.
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2004 ircd-ratbox development team
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24 * $Id: ircd.h 21852 2006-02-07 19:29:02Z leeh $
27 #ifndef INCLUDED_ircd_h
28 #define INCLUDED_ircd_h
39 int maxclients
; /* max clients allowed */
40 int autoconn
; /* autoconn enabled for all servers? */
44 int floodcount
; /* Number of messages in 1 second */
45 int ident_timeout
; /* timeout for identd lookups */
50 char operstring
[REALLEN
];
51 char adminstring
[REALLEN
];
57 int total
; /* total clients */
58 int invisi
; /* invisible clients */
59 int max_loc
; /* MAX local clients */
60 int max_tot
; /* MAX global clients */
61 unsigned long totalrestartcount
; /* Total client count ever */
64 extern struct SetOptions GlobalSetOptions
; /* defined in ircd.c */
66 extern const char *creation
;
67 extern const char *generation
;
68 extern const char *platform
;
69 extern const char *infotext
[];
70 extern const char *serno
;
71 extern const char *ircd_version
;
72 extern const char *logFileName
;
73 extern const char *pidFileName
;
74 extern int cold_start
;
76 extern int dorehashbans
;
78 extern int kline_queued
;
79 extern int server_state_foreground
;
80 int conf_parse_failure
;
82 extern struct Client me
;
83 extern dlink_list global_client_list
;
84 extern struct Client
*local
[];
85 extern struct Counter Count
;
87 extern time_t CurrentTime
;
89 extern struct timeval SystemTime
;
90 #define CurrentTime SystemTime.tv_sec
91 extern int default_server_capabs
;
93 extern time_t startup_time
;
96 extern int splitchecking
;
97 extern int split_users
;
98 extern int split_servers
;
101 extern dlink_list unknown_list
;
102 extern dlink_list lclient_list
;
103 extern dlink_list serv_list
;
104 extern dlink_list global_serv_list
;
105 extern dlink_list oper_list
;
106 extern dlink_list dead_list
;
108 void ircd_shutdown(const char *reason
);
110 extern void get_current_bandwidth(struct Client
*source_p
, struct Client
*target_p
);
112 extern unsigned long get_maxrss(void);
113 extern void set_time(void);
115 extern int testing_conf
;
116 extern int maxconnections
;