X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fgraph.c;h=977262379b65eaaa09cdcbce24ad533e3ed8ddc0;hp=148f23c4253d20c9e2ae69a2b17553ccb28c423d;hb=ed14ef93b47622ba13099dfc6be5335222e987a6;hpb=4c85542894f7fca823b119b05e07179deb24229a diff --git a/src/graph.c b/src/graph.c index 148f23c4..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; @@ -286,6 +287,11 @@ void sssp_bfs(void) { free(envp[i]); subnet_update(n, NULL, n->status.reachable); + + if(!n->status.reachable) + update_node_udp(n, NULL); + else if(n->connection) + send_ans_key(n); } } }