X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnet.c;h=33d90da8137d861864f0e61a923562ce3acdfdbf;hp=5638e64dd7a8b3f18255cd04883939c7184eb4e6;hb=f02d3ed3e135b5326003e7f69f8331ff6a3cc219;hpb=760dd966efe7dbff316a8c638e40dee162848256 diff --git a/src/net.c b/src/net.c index 5638e64d..33d90da8 100644 --- a/src/net.c +++ b/src/net.c @@ -41,8 +41,7 @@ /* Purge edges and subnets of unreachable nodes. Use carefully. */ -static void purge(void) -{ +static void purge(void) { avl_node_t *nnode, *nnext, *enode, *enext, *snode, *snext; node_t *n; edge_t *e; @@ -105,8 +104,7 @@ static void purge(void) put all file descriptors into events While we're at it, purge stuf that needs to be removed. */ -static int build_fdset(void) -{ +static int build_fdset(void) { avl_node_t *node, *next; connection_t *c; int i, max = 0; @@ -134,8 +132,7 @@ static int build_fdset(void) - Check if we need to retry making an outgoing connection - Deactivate the host */ -void terminate_connection(connection_t *c, bool report) -{ +void terminate_connection(connection_t *c, bool report) { cp(); if(c->status.remove) @@ -200,8 +197,7 @@ void terminate_connection(connection_t *c, bool report) end does not reply in time, we consider them dead and close the connection. */ -static void timeout_handler(int fd, short events, void *event) -{ +static void timeout_handler(int fd, short events, void *event) { avl_node_t *node, *next; connection_t *c; time_t now = time(NULL); @@ -245,8 +241,7 @@ static void timeout_handler(int fd, short events, void *event) event_add(event, &(struct timeval){pingtimeout, 0}); } -void handle_meta_connection_data(int fd, short events, void *data) -{ +void handle_meta_connection_data(int fd, short events, void *data) { connection_t *c = data; int result; socklen_t len = sizeof(result); @@ -387,8 +382,7 @@ static void sigalrm_handler(int signal, short events, void *data) { /* this is where it all happens... */ -int main_loop(void) -{ +int main_loop(void) { struct timeval tv; int r; struct event timeout_event;