Immediately exchange keys when establishing a meta connection.
This in turn will trigger PMTU discovery, and ensures nodes know each others reflexive UDP address and port.
This commit is contained in:
parent
4a0b998151
commit
ed14ef93b4
1 changed files with 3 additions and 0 deletions
|
@ -53,6 +53,7 @@
|
|||
#include "netutl.h"
|
||||
#include "node.h"
|
||||
#include "process.h"
|
||||
#include "protocol.h"
|
||||
#include "subnet.h"
|
||||
#include "utils.h"
|
||||
#include "xalloc.h"
|
||||
|
@ -289,6 +290,8 @@ void sssp_bfs(void) {
|
|||
|
||||
if(!n->status.reachable)
|
||||
update_node_udp(n, NULL);
|
||||
else if(n->connection)
|
||||
send_ans_key(n);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue