aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2018-04-15 19:30:28 +0200
committerToni Uhlig <matzeton@googlemail.com>2018-04-15 19:30:28 +0200
commitcaded52a6c9f1ae86ed05dbe48074ef8a61a4027 (patch)
tree369d835a5be9aeb72d4779a447490626e411a7f5 /src/main.c
parent793909637762f62b793f8223b60d933bda77e620 (diff)
POTD skeleton #6.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index ff5fcbb..022c15c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -26,13 +26,13 @@ int main(int argc, char *argv[])
ssh_ports[1] = "2223";
ssh_ports[2] = "22050";
for (size_t i = 0; i < srv_siz; ++i) {
- N("Initialising SSH server on port %s", ssh_ports[i]);
+ D("Initialising redirector service on port %s", ssh_ports[i]);
ABORT_ON_FATAL( server_init_ctx(&srv[i], ssh_init_cb),
"Server initialisation" );
server_validate_ctx(&srv[i]);
- GAI_ABORT_ON_FATAL( socket_init_in(&srv[i].sock, NULL, ssh_ports[i], &netifs),
+ GAI_ABORT_ON_FATAL( socket_init_in(NULL, ssh_ports[i], &netifs),
"Socket initialisation" );
ABORT_ON_FATAL( socket_bind_in(&srv[i].sock, netifs),