Removing '/* patricia */' declarations block as libratbox3 has this now, changed the order of variable declarations a bit
This commit is contained in:
parent
4d938eac7d
commit
b5a93db8b8
24
src/ircd.c
24
src/ircd.c
|
@ -93,16 +93,6 @@ rb_dlink_list global_serv_list; /* global servers on the network */
|
||||||
rb_dlink_list local_oper_list; /* our opers, duplicated in lclient_list */
|
rb_dlink_list local_oper_list; /* our opers, duplicated in lclient_list */
|
||||||
rb_dlink_list oper_list; /* network opers */
|
rb_dlink_list oper_list; /* network opers */
|
||||||
|
|
||||||
time_t startup_time;
|
|
||||||
|
|
||||||
int default_server_capabs = CAP_MASK;
|
|
||||||
|
|
||||||
int splitmode;
|
|
||||||
int splitchecking;
|
|
||||||
int split_users;
|
|
||||||
int split_servers;
|
|
||||||
int eob_count;
|
|
||||||
|
|
||||||
const char *logFileName = LPATH;
|
const char *logFileName = LPATH;
|
||||||
const char *pidFileName = PPATH;
|
const char *pidFileName = PPATH;
|
||||||
|
|
||||||
|
@ -117,15 +107,15 @@ int ssl_ok = 0;
|
||||||
int zlib_ok = 1;
|
int zlib_ok = 1;
|
||||||
|
|
||||||
int testing_conf = 0;
|
int testing_conf = 0;
|
||||||
|
time_t startup_time;
|
||||||
|
|
||||||
/* patricia */
|
int default_server_capabs = CAP_MASK;
|
||||||
rb_bh *prefix_heap;
|
|
||||||
rb_bh *node_heap;
|
|
||||||
rb_bh *patricia_heap;
|
|
||||||
|
|
||||||
rb_bh *linebuf_heap;
|
int splitmode;
|
||||||
|
int splitchecking;
|
||||||
rb_bh *dnode_heap;
|
int split_users;
|
||||||
|
int split_servers;
|
||||||
|
int eob_count;
|
||||||
|
|
||||||
void
|
void
|
||||||
ircd_shutdown(const char *reason)
|
ircd_shutdown(const char *reason)
|
||||||
|
|
Loading…
Reference in New Issue