X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnet.c;h=0eb5ef38e8de6ff9c9f9bbbd73c705a4c8f7af89;hp=66496cc6198a6520140c64d87faf47c89343a4a1;hb=e7f22d2f5f0a5fcd52da7512ab734b0ba52c623f;hpb=a822c7466aa91a819c498336f91c63d224c3af11 diff --git a/src/net.c b/src/net.c index 66496cc6..0eb5ef38 100644 --- a/src/net.c +++ b/src/net.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: net.c,v 1.31 2000/05/29 22:20:04 zarq Exp $ + $Id: net.c,v 1.34 2000/05/30 12:38:15 zarq Exp $ */ #include "config.h" @@ -815,6 +815,8 @@ cp */ void terminate_connection(conn_list_t *cl) { + conn_list_t *p, *q; + cp if(cl->status.remove) return; @@ -841,6 +843,29 @@ cp cl->status.active = 0; cl->status.remove = 1; + +cp + /* Find all connections that were lost because they were behind cl + (the connection that was dropped). */ + for(p = conn_list; p != NULL; p = p->next) + { + if(p->nexthop == cl) + { + p->status.active = 0; + p->status.remove = 1; + } + } + +cp + /* Then send a notification about all these connections to all hosts + that are still connected to us. */ + for(p = conn_list; p != NULL; p = p->next) + { + if(!p->status.remove && p->status.meta) + for(q = conn_list; q != NULL; q = q->next) + if(q->status.remove) + send_del_host(p, q); + } cp } @@ -973,7 +998,7 @@ cp { if(sscanf(cl->buffer, "%d", &request) == 1) { - if((request < 0 || request > 255) || request_handlers[request] == NULL) + if((request < 0) || (request > 255) || (request_handlers[request] == NULL)) { syslog(LOG_ERR, _("Unknown request: %s"), cl->buffer); return -1;