X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;ds=sidebyside;f=src%2Fnet_socket.c;h=5394d3646c306791dcd5296401814919699f10a5;hb=531d5a904a3a91bca8b7d373fb6ab2869b31e7fa;hp=1b55c9423e74744a37390167e44218d4de42b5ed;hpb=6ea1dfc995f386b3a9406c7935642524dc755c51;p=tinc diff --git a/src/net_socket.c b/src/net_socket.c index 1b55c942..5394d364 100644 --- a/src/net_socket.c +++ b/src/net_socket.c @@ -25,7 +25,6 @@ #include "avl_tree.h" #include "conf.h" #include "connection.h" -#include "tevent.h" #include "logger.h" #include "meta.h" #include "net.h" @@ -234,10 +233,11 @@ int setup_vpn_in_socket(const sockaddr_t *sa) return nfd; } -void retry_outgoing(outgoing_t *outgoing) -{ - tevent_t *event; +static void retry_outgoing_handler(int fd, short events, void *data) { + retry_outgoing(data); +} +void retry_outgoing(outgoing_t *outgoing) { cp(); outgoing->timeout += 5; @@ -245,11 +245,8 @@ void retry_outgoing(outgoing_t *outgoing) if(outgoing->timeout > maxtimeout) outgoing->timeout = maxtimeout; - event = new_tevent(); - event->handler = (event_handler_t) setup_outgoing_connection; - event->time = now + outgoing->timeout; - event->data = outgoing; - tevent_add(event); + timeout_set(&outgoing->ev, retry_outgoing_handler, outgoing); + event_add(&outgoing->ev, &(struct timeval){outgoing->timeout, 0}); ifdebug(CONNECTIONS) logger(LOG_NOTICE, _("Trying to re-establish outgoing connection in %d seconds"), @@ -398,6 +395,13 @@ void setup_outgoing_connection(outgoing_t *outgoing) connection_add(c); do_outgoing_connection(c); + + event_set(&c->ev, c->socket, EV_READ | EV_PERSIST, handle_meta_connection_data, c); + event_set(&c->outev, c->socket, EV_WRITE | EV_PERSIST, flush_meta, c); + if(event_add(&c->ev, NULL) < 0) { + logger(LOG_EMERG, _("event_add failed: %s"), strerror(errno)); + abort(); + } } /* @@ -416,8 +420,8 @@ void handle_new_meta_connection(int sock, short events, void *data) fd = accept(sock, &sa.sa, &len); if(fd < 0) { - logger(LOG_ERR, _("Accepting a new connection failed: %s"), - strerror(errno)); + logger(LOG_ERR, _("Accepting a new connection failed: %s"), strerror(errno)); + return; } sockaddrunmap(&sa); @@ -436,6 +440,14 @@ void handle_new_meta_connection(int sock, short events, void *data) ifdebug(CONNECTIONS) logger(LOG_NOTICE, _("Connection from %s"), c->hostname); + event_set(&c->ev, c->socket, EV_READ | EV_PERSIST, handle_meta_connection_data, c); + event_set(&c->outev, c->socket, EV_WRITE | EV_PERSIST, flush_meta, c); + if(event_add(&c->ev, NULL) < 0) { + logger(LOG_ERR, _("event_add failed: %s"), strerror(errno)); + connection_del(c); + return; + } + configure_tcp(c); connection_add(c);