Proactively send our own key when we request another node's key.
authorGuus Sliepen <guus@tinc-vpn.org>
Sat, 10 Jan 2015 22:52:23 +0000 (23:52 +0100)
committerGuus Sliepen <guus@tinc-vpn.org>
Sat, 10 Jan 2015 22:52:23 +0000 (23:52 +0100)
src/net_packet.c

index f219287..456b43d 100644 (file)
@@ -1111,6 +1111,11 @@ static void try_tx_sptps(node_t *n) {
 }
 
 static void try_tx_legacy(node_t *n) {
+       /* Does he have our key? If not, send one. */
+
+       if(!n->status.validkey_in)
+               send_ans_key(n);
+
        /* Check if we already have a key, or request one. */
 
        if(!n->status.validkey) {