X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fmeta.c;h=2ff272ecd459541a71de30db9b4f1ad0ac63efc5;hp=dde0e2a4fce9b2c2130c21f32ac7be15114ec21d;hb=0e59fb022c6c015a5be7ed70e0378cb011be98b5;hpb=ffb7327c20952cefcb5578e40f9802295172c5c2 diff --git a/src/meta.c b/src/meta.c index dde0e2a4..2ff272ec 100644 --- a/src/meta.c +++ b/src/meta.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: meta.c,v 1.1.2.47 2003/10/11 14:18:52 guus Exp $ + $Id: meta.c,v 1.1.2.49 2003/11/10 22:31:53 guus Exp $ */ #include "system.h" @@ -88,7 +88,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) + if(c != from && c->status.active && !c->status.opaque) send_meta(c, buffer, length); } } @@ -150,7 +150,7 @@ bool receive_meta(connection_t *c) receive_tcppacket(c, c->buffer, c->tcplen); c->buflen -= c->tcplen; - lenin -= c->tcplen; + lenin -= c->tcplen - oldlen; memmove(c->buffer, c->buffer + c->tcplen, c->buflen); oldlen = 0; c->tcplen = 0;