X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fconnection.c;fp=src%2Fconnection.c;h=7c8cd0ba83e3c326a47505f8f8cd175403926bfe;hp=289c233bb9f29803e77e1e28c0e201a4711f2623;hb=a227843b739d279b63adcf3736ebb03d856080c4;hpb=5dde6461a321ee47b06e33f8203f2acf00a31a51 diff --git a/src/connection.c b/src/connection.c index 289c233b..7c8cd0ba 100644 --- a/src/connection.c +++ b/src/connection.c @@ -38,8 +38,6 @@ static int connection_compare(const connection_t *a, const connection_t *b) { } void init_connections(void) { - cp(); - connection_tree = avl_alloc_tree((avl_compare_t) connection_compare, (avl_action_t) free_connection); broadcast = new_connection(); broadcast->name = xstrdup(_("everyone")); @@ -47,8 +45,6 @@ void init_connections(void) { } void exit_connections(void) { - cp(); - avl_delete_tree(connection_tree); free_connection(broadcast); } @@ -56,8 +52,6 @@ void exit_connections(void) { connection_t *new_connection(void) { connection_t *c; - cp(); - c = xmalloc_and_zero(sizeof(connection_t)); if(!c) @@ -69,8 +63,6 @@ connection_t *new_connection(void) { } void free_connection(connection_t *c) { - cp(); - if(c->name) free(c->name); @@ -112,14 +104,10 @@ void free_connection(connection_t *c) { } void connection_add(connection_t *c) { - cp(); - avl_insert(connection_tree, c); } void connection_del(connection_t *c) { - cp(); - avl_delete(connection_tree, c); } @@ -127,8 +115,6 @@ void dump_connections(void) { avl_node_t *node; connection_t *c; - cp(); - logger(LOG_DEBUG, _("Connections:")); for(node = connection_tree->head; node; node = node->next) { @@ -145,8 +131,6 @@ bool read_connection_config(connection_t *c) { char *fname; int x; - cp(); - xasprintf(&fname, "%s/hosts/%s", confbase, c->name); x = read_config_file(c->config_tree, fname); free(fname);