]> www.tinc-vpn.org Git - tinc/blobdiff - src/net_packet.c
Avoid treating compressed MTU probes as having a negative length.
[tinc] / src / net_packet.c
index ebf2938acb8bc826f2dd517d37b700f0a41718bf..9baaf4c8be4854bbe4bd3f1f7d1738fd46a2383e 100644 (file)
@@ -462,7 +462,10 @@ static bool receive_udppacket(node_t *n, vpn_packet_t *inpkt) {
 
                inpkt = outpkt;
 
-               origlen -= MTU / 64 + 20;
+               if (origlen > MTU / 64 + 20)
+                       origlen -= MTU / 64 + 20;
+               else
+                       origlen = 0;
        }
 
        if(inpkt->len > n->maxrecentlen) {