diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-06-07 00:56:47 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-06-07 00:56:47 +0200 |
commit | b0a169a1465a75592f0083a3e4e17c307878fc73 (patch) | |
tree | 4797ab4b3840cff3f3f9214699b3d9a844fc42fb /src/protocol_ec25519_fhmqvc.c | |
parent | 25bf4f4901fe2360d29b7ea5a49b817310ac90dc (diff) | |
download | fastd-b0a169a1465a75592f0083a3e4e17c307878fc73.tar fastd-b0a169a1465a75592f0083a3e4e17c307878fc73.zip |
Limit handshake frequency where possible
Diffstat (limited to 'src/protocol_ec25519_fhmqvc.c')
-rw-r--r-- | src/protocol_ec25519_fhmqvc.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/protocol_ec25519_fhmqvc.c b/src/protocol_ec25519_fhmqvc.c index 75360b7..96f0847 100644 --- a/src/protocol_ec25519_fhmqvc.c +++ b/src/protocol_ec25519_fhmqvc.c @@ -577,12 +577,20 @@ static void protocol_handshake_handle(fastd_context *ctx, const fastd_peer_addre switch(handshake->type) { case 1: + if (timespec_diff(&ctx->now, &peer->last_handshake_response) < ctx->conf->min_handshake_interval*1000 + && fastd_peer_address_equal(address, &peer->last_handshake_response_address)) { + pr_debug(ctx, "not responding repeated handshake from %P[%I]", peer, address); + return; + } + if (handshake->records[RECORD_VERSION_NAME].data) peer_version_name = strndup(handshake->records[RECORD_VERSION_NAME].data, handshake->records[RECORD_VERSION_NAME].length); - + pr_verbose(ctx, "received handshake from %P[%I] using fastd %s", peer, address, peer_version_name); free(peer_version_name); + peer->last_handshake_response = ctx->now; + peer->last_handshake_response_address = *address; respond_handshake(ctx, address, peer, &ctx->protocol_state->handshake_key, handshake->records[RECORD_SENDER_HANDSHAKE_KEY].data, handshake); break; |