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