Avoid treating compressed MTU probes as having a negative length.
authorGuus Sliepen <guus@tinc-vpn.org>
Sat, 23 Jun 2018 20:26:12 +0000 (22:26 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Sat, 23 Jun 2018 20:26:12 +0000 (22:26 +0200)
This was not harmful, but caused negative values being logged.

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) {