X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fconnection.c;h=5cd7a747e6c9bbcbeda0648ee73b6ac3ea1f460d;hb=6ea1dfc995f386b3a9406c7935642524dc755c51;hp=9e5d145ea200295ae989c27bc1cb1d16a995e56f;hpb=56c36a14d87b58c14dbc48df4d3d977207e2c06e;p=tinc diff --git a/src/connection.c b/src/connection.c index 9e5d145e..5cd7a747 100644 --- a/src/connection.c +++ b/src/connection.c @@ -1,7 +1,7 @@ /* connection.c -- connection list management - Copyright (C) 2000-2004 Guus Sliepen , - 2000-2004 Ivo Timmermans + Copyright (C) 2000-2007 Guus Sliepen , + 2000-2005 Ivo Timmermans This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -70,6 +70,7 @@ connection_t *new_connection(void) return NULL; gettimeofday(&c->start, NULL); + event_set(&c->ev, -1, 0, NULL, NULL); return c; } @@ -78,6 +79,12 @@ void free_connection(connection_t *c) { cp(); + if(!c) + return; + + if(c->name) + free(c->name); + if(c->hostname) free(c->hostname); @@ -93,6 +100,7 @@ void free_connection(connection_t *c) if(c->hischallenge) free(c->hischallenge); + event_del(&c->ev); free(c); } @@ -121,8 +129,9 @@ void dump_connections(void) 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, *(uint32_t *)&c->status); + logger(LOG_DEBUG, _(" %s at %s options %lx socket %d status %04x outbuf %d/%d/%d"), + c->name, c->hostname, c->options, c->socket, c->status.value, + c->outbufsize, c->outbufstart, c->outbuflen); } logger(LOG_DEBUG, _("End of connections."));