From 5ad75d7db0214cb68555d46d5f493fd50f317c9e Mon Sep 17 00:00:00 2001 From: tiptorrent development team Date: Sat, 18 Sep 2021 23:17:29 +0200 Subject: report socket is connected, instead of connecting --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/main.c b/src/main.c index d3e0bfc..36cba55 100644 --- a/src/main.c +++ b/src/main.c @@ -308,6 +308,8 @@ static void tip_client_connect_cb(struct ev_loop *loop, struct ev_io *io, int ev return; } + syslog(LOG_INFO, "connected to %s to fetch file %s\n", addr, filename); + if (cli->state == TIP_CLIENT_NOTIFY_REDIRECT) snprintf(buf, sizeof(buf), "POST /%s HTTP/1.1\r\n\r\n", filename); else @@ -368,8 +370,6 @@ static int tip_client_connect(const char *addr) ev_io_init(&cli->io, tip_client_connect_cb, remote_fd, EV_WRITE); ev_io_start(tip_main_loop, &cli->io); - syslog(LOG_INFO, "connecting to %s to fetch file %s\n", addr, filename); - return 0; } -- cgit v1.2.3-18-g5258