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 ebf2938..9baaf4c 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) {