projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
60fb230
)
Fix forwarding of edge updates.
author
Guus Sliepen
<guus@tinc-vpn.org>
Sun, 28 Feb 2016 15:28:28 +0000
(16:28 +0100)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Sun, 28 Feb 2016 15:31:31 +0000
(16:31 +0100)
Commit
e4670fc
accidentily prevented ADD_EDGE messages from propagating
in some cases.
src/protocol_edge.c
patch
|
blob
|
history
diff --git
a/src/protocol_edge.c
b/src/protocol_edge.c
index
5553f43
..
a4aaa0c
100644
(file)
--- a/
src/protocol_edge.c
+++ b/
src/protocol_edge.c
@@
-153,8
+153,7
@@
bool add_edge_h(connection_t *c, const char *request) {
avl_insert_node(edge_weight_tree, node);
}
- graph();
- return true;
+ goto done;
}
} else if(sockaddrcmp(&e->local_address, &local_address)) {
if(from == myself) {
@@
-212,6
+211,7
@@
bool add_edge_h(connection_t *c, const char *request) {
e->weight = weight;
edge_add(e);
+done:
/* Tell the rest about the new edge */
if(!tunnelserver)