X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fmeta.c;h=8e9c8d390d69574782b0494f188b24d9c216e391;hp=2ff272ecd459541a71de30db9b4f1ad0ac63efc5;hb=df3220a1549f992cbf4a9b6e67c1e67b69896c7d;hpb=0e59fb022c6c015a5be7ed70e0378cb011be98b5 diff --git a/src/meta.c b/src/meta.c index 2ff272ec..8e9c8d39 100644 --- a/src/meta.c +++ b/src/meta.c @@ -1,7 +1,7 @@ /* meta.c -- handle the meta communication - Copyright (C) 2000-2003 Guus Sliepen , - 2000-2003 Ivo Timmermans + Copyright (C) 2000-2005 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 @@ -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: meta.c,v 1.1.2.49 2003/11/10 22:31:53 guus Exp $ + $Id$ */ #include "system.h" @@ -31,7 +31,6 @@ #include "meta.h" #include "net.h" #include "protocol.h" -#include "system.h" #include "utils.h" bool send_meta(connection_t *c, const char *buffer, int length) @@ -88,7 +87,7 @@ void broadcast_meta(connection_t *from, const char *buffer, int length) for(node = connection_tree->head; node; node = node->next) { c = node->data; - if(c != from && c->status.active && !c->status.opaque) + if(c != from && c->status.active) send_meta(c, buffer, length); } }