projects
/
oweals
/
tinc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8793fb7
)
Clear status and options fields of unreachable nodes.
author
Guus Sliepen
<guus@tinc-vpn.org>
Thu, 11 Oct 2012 20:21:30 +0000
(22:21 +0200)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Wed, 14 Nov 2012 10:06:55 +0000
(11:06 +0100)
Conflicts:
src/graph.c
src/graph.c
patch
|
blob
|
history
diff --git
a/src/graph.c
b/src/graph.c
index e2ef8b1a7a5e038061f0b1e4e36ab84c3b9e80ff..586aee8b738e67a6627590188fbfe743304a4f24 100644
(file)
--- a/
src/graph.c
+++ b/
src/graph.c
@@
-287,10
+287,13
@@
static void sssp_bfs(void) {
subnet_update(n, NULL, n->status.reachable);
- if(!n->status.reachable)
+ if(!n->status.reachable)
{
update_node_udp(n, NULL);
- else if(n->connection)
+ memset(&n->status, 0, sizeof n->status);
+ n->options = 0;
+ } else if(n->connection) {
send_ans_key(n);
+ }
}
}
}