Remove address cache debug messages printed to stderr.
[tinc] / src / net_packet.c
index ebf2938..5d70481 100644 (file)
@@ -167,7 +167,6 @@ static void udp_probe_h(node_t *n, vpn_packet_t *packet, length_t len) {
           packet used. */
        if(!n->status.udp_confirmed) {
                n->status.udp_confirmed = true;
-               fprintf(stderr, "Updating address cache...\n");
 
                if(!n->address_cache) {
                        n->address_cache = open_address_cache(n);
@@ -462,7 +461,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) {