X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/cbb49fab6afe2b80c91326f260588b9952f88af5..b0ac993f2db7353d633ba9a508506bb453cb0341:/src/ircd.c diff --git a/src/ircd.c b/src/ircd.c index 5cdce48..c619315 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -78,7 +78,7 @@ extern int ServerRunning; extern struct LocalUser meLocalUser; extern char **myargv; -extern int maxconnections; /* XXX */ +int maxconnections; /* XXX */ /* * print_startup - print startup information @@ -111,7 +111,7 @@ ircd_log_cb(const char *str) static void ircd_restart_cb(const char *str) { - restart(buf); + restart(str); } /* @@ -229,6 +229,7 @@ void set_time(void) { struct timeval newtime; + newtime.tv_sec = 0; newtime.tv_usec = 0; #ifdef HAVE_GETTIMEOFDAY @@ -244,11 +245,11 @@ set_time(void) newtime.tv_sec = time(NULL); #endif - if(newtime.tv_sec < rb_current_time()) - rb_set_back_events(rb_current_time() - newtime.tv_sec); SystemTime.tv_sec = newtime.tv_sec; SystemTime.tv_usec = newtime.tv_usec; + + rb_set_time(); } static void @@ -279,26 +280,6 @@ check_rehash(void *unused) } } -void -charybdis_io_loop(void) -{ - time_t delay; - - while (ServerRunning) - { - /* Run pending events, then get the number of seconds to the next - * event - */ - - delay = rb_event_next(); - if(delay <= rb_current_time()) - rb_event_run(); - - - rb_select(250); - } -} - /* * initalialize_global_set_options * @@ -559,6 +540,7 @@ main(int argc, char *argv[]) /* Init the event subsystem */ init_sys(); rb_lib_init(ircd_log_cb, ircd_restart_cb, ircd_die_cb, !server_state_foreground, maxconnections, DNODE_HEAP_SIZE, FD_HEAP_SIZE); + rb_linebuf_init(LINEBUF_HEAP_SIZE); init_main_logfile(); newconf_init(); @@ -673,7 +655,7 @@ main(int argc, char *argv[]) print_startup(getpid()); - charybdis_io_loop(); + rb_lib_loop(250); return 0; }