X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fconnection.c;h=230ec4ede6b48ca3ae3560ba3ae0844c5407f647;hb=08aabbf9317806bc50a9a6693ca866c8936ce26b;hp=a369cb83d900827a5741c77343de39bc64c5dafe;hpb=1b8f8918360b40a2749d40355266ed7dedbe41b5;p=tinc diff --git a/src/connection.c b/src/connection.c index a369cb83..230ec4ed 100644 --- a/src/connection.c +++ b/src/connection.c @@ -80,6 +80,9 @@ void free_connection(connection_t *c) { if(c->hischallenge) free(c->hischallenge); + if(c->config_tree) + exit_configuration(&c->config_tree); + if(c->buffer) bufferevent_free(c->buffer); @@ -101,21 +104,22 @@ void connection_del(connection_t *c) { splay_delete(connection_tree, c); } -void dump_connections(void) { +int dump_connections(struct evbuffer *out) { splay_node_t *node; connection_t *c; cp(); - logger(LOG_DEBUG, _("Connections:")); - for(node = connection_tree->head; node; node = node->next) { c = node->data; - logger(LOG_DEBUG, _(" %s at %s options %lx socket %d status %04x"), - c->name, c->hostname, c->options, c->socket, c->status.value); + if(evbuffer_add_printf(out, + _(" %s at %s options %lx socket %d status %04x\n"), + c->name, c->hostname, c->options, c->socket, + c->status.value) == -1) + return errno; } - logger(LOG_DEBUG, _("End of connections.")); + return 0; } bool read_connection_config(connection_t *c) {