X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fgraph.c;h=977262379b65eaaa09cdcbce24ad533e3ed8ddc0;hp=f5aff5bfd7a2511e71042162408e390a332d19ea;hb=ed14ef93b47622ba13099dfc6be5335222e987a6;hpb=369fe1ab1cbfc3f8305de1faab2e30157378b044 diff --git a/src/graph.c b/src/graph.c index f5aff5bf..97726237 100644 --- a/src/graph.c +++ b/src/graph.c @@ -53,6 +53,7 @@ #include "netutl.h" #include "node.h" #include "process.h" +#include "protocol.h" #include "subnet.h" #include "utils.h" #include "xalloc.h" @@ -251,7 +252,7 @@ void sssp_bfs(void) { /* TODO: only clear status.validkey if node is unreachable? */ n->status.validkey = false; - n->status.waitingforkey = false; + n->last_req_key = 0; n->maxmtu = MTU; n->minmtu = 0; @@ -289,6 +290,8 @@ void sssp_bfs(void) { if(!n->status.reachable) update_node_udp(n, NULL); + else if(n->connection) + send_ans_key(n); } } }