50 |
|
#include "server.h" |
51 |
|
#include "server_capab.h" |
52 |
|
#include "send.h" |
53 |
– |
#include "whowas.h" |
53 |
|
#include "modules.h" |
54 |
|
#include "memory.h" |
56 |
– |
#include "mempool.h" |
55 |
|
#include "ircd_getopt.h" |
58 |
– |
#include "watch.h" |
56 |
|
#include "conf_db.h" |
57 |
|
#include "conf_class.h" |
58 |
|
#include "ipcache.h" |
59 |
|
#include "isupport.h" |
63 |
– |
#include "userhost.h" |
60 |
|
|
61 |
|
|
62 |
|
struct SetOptions GlobalSetOptions; /* /quote set variables */ |
402 |
|
/* Check if there is pidfile and daemon already running */ |
403 |
|
check_pidfile(pidFileName); |
404 |
|
|
409 |
– |
mp_pool_init(); |
410 |
– |
init_dlink_nodes(); |
405 |
|
isupport_init(); |
412 |
– |
dbuf_init(); |
406 |
|
hash_init(); |
414 |
– |
userhost_init(); |
407 |
|
ipcache_init(); |
408 |
|
client_init(); |
409 |
|
class_init(); |
418 |
– |
whowas_init(); |
419 |
– |
watch_init(); |
410 |
|
auth_init(); /* Initialise the auth code */ |
411 |
|
resolver_init(); /* Needs to be setup before the io loop */ |
412 |
|
modules_init(); |
413 |
|
read_conf_files(1); /* cold start init conf files */ |
414 |
|
capab_init(); /* Set up default_server_capabs */ |
415 |
|
initialize_global_set_options(); /* Has to be called after read_conf_files() */ |
426 |
– |
channel_init(); |
416 |
|
channel_mode_init(); |
417 |
|
read_links_file(); |
418 |
|
motd_init(); |