]> git.meshlink.io Git - meshlink/blobdiff - src/net_packet.c
Nearly tickless tinc.
[meshlink] / src / net_packet.c
index 062523e50417f7c6e7c81bdab9de04db15e24204..fe20a2581283f3d460cd5e0caa626806b63fbe9e 100644 (file)
@@ -43,7 +43,6 @@
 #include "ethernet.h"
 #include "event.h"
 #include "graph.h"
-#include "list.h"
 #include "logger.h"
 #include "net.h"
 #include "netutl.h"
@@ -404,7 +403,7 @@ static void send_udppacket(node_t *n, vpn_packet_t *origpkt) {
                                   "No valid key known yet for %s (%s), forwarding via TCP",
                                   n->name, n->hostname);
 
-               if(n->last_req_key + 10 < now) {
+               if(n->last_req_key + 10 <= now) {
                        send_req_key(n);
                        n->last_req_key = now;
                }