From ecf35293f80bba8b83a0dbf28f097812aa4353cb Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Fri, 13 Apr 2018 21:23:34 +0200 Subject: POTD skeleton #3. --- src/main.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index b0c23b3..099888b 100644 --- a/src/main.c +++ b/src/main.c @@ -1,5 +1,6 @@ #include "log.h" #include "log_colored.h" +#include "thread_mgmt.h" #include "server.h" #include "server_ssh.h" #ifdef HAVE_CONFIG_H @@ -20,12 +21,13 @@ int main(int argc, char *argv[]) LOG_SET_FUNCS_VA(LOG_COLORED_FUNCS); N("%s (C) 2018 Toni Uhlig (%s)", PACKAGE_STRING, PACKAGE_BUGREPORT); + thread_manager_init(8); memset(&srv[0], 0, sizeof(srv)); ssh_ports[0] = "2222"; ssh_ports[1] = "2223"; ssh_ports[2] = "22050"; - for (int i = 0; i < srv_siz; ++i) { + for (size_t i = 0; i < srv_siz; ++i) { N("Initialising SSH server on port %s", ssh_ports[i]); ABORT_ON_FATAL( server_init_ctx(&srv[i], ssh_init_cb), @@ -46,11 +48,12 @@ int main(int argc, char *argv[]) } D2("%s", "Server epoll setup"); - epoll_fd = server_setup_epoll( (const server_ctx **) &srv, srv_siz ); - ABORT_ON_FATAL( epoll_fd >= 0, "Server epoll setup" ); + epoll_fd = server_setup_epoll( &srv[0], srv_siz ); + D2("epoll_fd: %d", epoll_fd); + ABORT_ON_FATAL( epoll_fd < 0, "Server epoll setup" ); - D2("%s", "Server epoll mainloop"); - ABORT_ON_FATAL( server_mainloop_epoll( epoll_fd, (const server_ctx **) &srv, srv_siz ), + N("%s", "Server epoll mainloop"); + ABORT_ON_FATAL( server_mainloop_epoll( epoll_fd, &srv[0], srv_siz ), "Server epoll mainloop" ); return 0; } -- cgit v1.2.3