]> jfr.im git - irc/rqf/shadowircd.git/blame - include/ircd.h
start making this compile
[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 *
24 * $Id: ircd.h 1851 2006-08-24 17:16:53Z jilles $
25 */
26
27#ifndef INCLUDED_ircd_h
28#define INCLUDED_ircd_h
29
30#include "config.h"
31#include "tools.h"
32#include "memory.h"
33
34struct Client;
08d11e34 35struct rb_dlink_list;
212380e3 36
37struct SetOptions
38{
39 int maxclients; /* max clients allowed */
40 int autoconn; /* autoconn enabled for all servers? */
41
212380e3 42 int floodcount; /* Number of messages in 1 second */
43 int ident_timeout; /* timeout for identd lookups */
44
45 int spam_num;
46 int spam_time;
47
48 char operstring[REALLEN];
49 char adminstring[REALLEN];
50};
51
52struct Counter
53{
54 int oper; /* Opers */
55 int total; /* total clients */
56 int invisi; /* invisible clients */
57 int max_loc; /* MAX local clients */
58 int max_tot; /* MAX global clients */
59 unsigned long totalrestartcount; /* Total client count ever */
60};
61
62extern struct SetOptions GlobalSetOptions; /* defined in ircd.c */
63
64extern const char *creation;
65extern const char *generation;
66extern const char *platform;
67extern const char *infotext[];
68extern const char *serno;
69extern const char *ircd_version;
70extern const char *logFileName;
71extern const char *pidFileName;
72extern int cold_start;
73extern int dorehash;
74extern int dorehashbans;
75extern int doremotd;
76extern int kline_queued;
77extern int server_state_foreground;
78extern int opers_see_all_users; /* sno_farconnect.so loaded, operspy without
79 accountability, etc */
80
81extern struct Client me;
08d11e34 82extern rb_dlink_list global_client_list;
212380e3 83extern struct Client *local[];
84extern struct Counter Count;
85#if 0
86extern time_t CurrentTime;
87#endif
88extern struct timeval SystemTime;
89#define CurrentTime SystemTime.tv_sec
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;
98int eob_count;
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
108extern void get_current_bandwidth(struct Client *source_p, struct Client *target_p);
109
110extern unsigned long get_maxrss(void);
111extern void set_time(void);
112extern void charybdis_io_loop(void);
113
114extern int testing_conf;
115
116#endif