]> jfr.im git - irc/rqf/shadowircd.git/blame - include/ircd.h
SVN Id removal part two
[irc/rqf/shadowircd.git] / include / ircd.h
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * ircd.h: A header for the ircd startup routines.
4 *
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
8 *
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.
13 *
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.
18 *
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
22 * USA
23 *
212380e3 24 */
25
26#ifndef INCLUDED_ircd_h
27#define INCLUDED_ircd_h
28
29#include "config.h"
212380e3 30
31struct Client;
08d11e34 32struct rb_dlink_list;
212380e3 33
34struct SetOptions
35{
36 int maxclients; /* max clients allowed */
37 int autoconn; /* autoconn enabled for all servers? */
38
212380e3 39 int floodcount; /* Number of messages in 1 second */
40 int ident_timeout; /* timeout for identd lookups */
41
42 int spam_num;
43 int spam_time;
44
67537fef 45 char operhost[REALLEN];
212380e3 46 char operstring[REALLEN];
47 char adminstring[REALLEN];
48};
49
0b370fcc
G
50struct Metadata
51{
52 const char *name;
53 const char *value;
54 time_t timevalue;
55};
56
212380e3 57struct Counter
58{
59 int oper; /* Opers */
60 int total; /* total clients */
61 int invisi; /* invisible clients */
62 int max_loc; /* MAX local clients */
63 int max_tot; /* MAX global clients */
64 unsigned long totalrestartcount; /* Total client count ever */
65};
66
67extern struct SetOptions GlobalSetOptions; /* defined in ircd.c */
68
69extern const char *creation;
70extern const char *generation;
71extern const char *platform;
72extern const char *infotext[];
73extern const char *serno;
74extern const char *ircd_version;
75extern const char *logFileName;
76extern const char *pidFileName;
77extern int cold_start;
78extern int dorehash;
79extern int dorehashbans;
80extern int doremotd;
81extern int kline_queued;
82extern int server_state_foreground;
83extern int opers_see_all_users; /* sno_farconnect.so loaded, operspy without
84 accountability, etc */
85
86extern struct Client me;
08d11e34 87extern rb_dlink_list global_client_list;
212380e3 88extern struct Client *local[];
89extern struct Counter Count;
212380e3 90extern int default_server_capabs;
91
92extern time_t startup_time;
93
94extern int splitmode;
95extern int splitchecking;
96extern int split_users;
97extern int split_servers;
33dcd535 98extern int eob_count;
212380e3 99
08d11e34
WP
100extern rb_dlink_list unknown_list;
101extern rb_dlink_list lclient_list;
102extern rb_dlink_list serv_list;
103extern rb_dlink_list global_serv_list;
104extern rb_dlink_list local_oper_list;
105extern rb_dlink_list oper_list;
106extern rb_dlink_list dead_list;
212380e3 107
212380e3 108extern int testing_conf;
109
ccfe0e97
WP
110extern struct ev_entry *check_splitmode_ev;
111
8db00894
VY
112extern int ssl_ok;
113extern int zlib_ok;
fb968f05
VY
114extern int maxconnections;
115
6972e25a
VY
116void ircd_shutdown(const char *reason);
117
212380e3 118#endif