Do not send informations about unreachable nodes - testing highly experimental, the problem is that once a node has been introduced to the network it will never be deleted until all tincd will be disabled in the whole network at once

This commit is contained in:
thorkill 2015-11-29 11:41:13 +01:00
parent 23c78217b1
commit 781dac00d5

View file

@ -744,6 +744,9 @@ static void send_everything(connection_t *c) {
}
for splay_each(node_t, n, node_tree) {
if (!n->status.reachable)
continue;
for splay_each(subnet_t, s, n->subnet_tree)
send_add_subnet(c, s);