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:
eb7a0db
)
Immediately send our key when a meta-connection is established.
author
Guus Sliepen
<guus@tinc-vpn.org>
Sun, 11 Jan 2015 12:51:55 +0000
(13:51 +0100)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Sun, 11 Jan 2015 12:51:55 +0000
(13:51 +0100)
This is what 1.0 does, and speeds up the UDP probing.
src/graph.c
patch
|
blob
|
history
diff --git
a/src/graph.c
b/src/graph.c
index c95ab91e629d668a275e35862cc028272a7b6419..7bace2eda84322954672f4b96c0ea73516c6a5c2 100644
(file)
--- a/
src/graph.c
+++ b/
src/graph.c
@@
-275,6
+275,10
@@
static void check_reachability(void) {
update_node_udp(n, NULL);
memset(&n->status, 0, sizeof n->status);
n->options = 0;
+ } else if(n->connection) {
+ // Speed up UDP probing by sending our key.
+ if(!n->status.sptps)
+ send_ans_key(n);
}
}