]> jfr.im git - irc/rqf/shadowircd.git/blob - include/ircd.h
extern void send_pop_queue(struct Client *); in header, will implement this some...
[irc/rqf/shadowircd.git] / include / ircd.h
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
32 struct Client;
33 struct rb_dlink_list;
34
35 struct SetOptions
36 {
37 int maxclients; /* max clients allowed */
38 int autoconn; /* autoconn enabled for all servers? */
39
40 int floodcount; /* Number of messages in 1 second */
41 int ident_timeout; /* timeout for identd lookups */
42
43 int spam_num;
44 int spam_time;
45
46 char operstring[REALLEN];
47 char adminstring[REALLEN];
48 };
49
50 struct Counter
51 {
52 int oper; /* Opers */
53 int total; /* total clients */
54 int invisi; /* invisible clients */
55 int max_loc; /* MAX local clients */
56 int max_tot; /* MAX global clients */
57 unsigned long totalrestartcount; /* Total client count ever */
58 };
59
60 extern struct SetOptions GlobalSetOptions; /* defined in ircd.c */
61
62 extern const char *creation;
63 extern const char *generation;
64 extern const char *platform;
65 extern const char *infotext[];
66 extern const char *serno;
67 extern const char *ircd_version;
68 extern const char *logFileName;
69 extern const char *pidFileName;
70 extern int cold_start;
71 extern int dorehash;
72 extern int dorehashbans;
73 extern int doremotd;
74 extern int kline_queued;
75 extern int server_state_foreground;
76 extern int opers_see_all_users; /* sno_farconnect.so loaded, operspy without
77 accountability, etc */
78
79 extern struct Client me;
80 extern rb_dlink_list global_client_list;
81 extern struct Client *local[];
82 extern struct Counter Count;
83 #if 0
84 extern time_t CurrentTime;
85 #endif
86 extern struct timeval SystemTime;
87 #define CurrentTime SystemTime.tv_sec
88 extern int default_server_capabs;
89
90 extern time_t startup_time;
91
92 extern int splitmode;
93 extern int splitchecking;
94 extern int split_users;
95 extern int split_servers;
96 int eob_count;
97
98 extern rb_dlink_list unknown_list;
99 extern rb_dlink_list lclient_list;
100 extern rb_dlink_list serv_list;
101 extern rb_dlink_list global_serv_list;
102 extern rb_dlink_list local_oper_list;
103 extern rb_dlink_list oper_list;
104 extern rb_dlink_list dead_list;
105
106 extern void get_current_bandwidth(struct Client *source_p, struct Client *target_p);
107
108 extern unsigned long get_maxrss(void);
109 extern void set_time(void);
110 extern void charybdis_io_loop(void);
111
112 extern int testing_conf;
113
114 extern struct ev_entry *check_splitmode_ev;
115
116 #endif