From b2540ad3304f13306cff98c29992b52a6f6d03b6 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Mon, 26 Oct 2020 17:16:51 +0100 Subject: Fixed latency calculation. - replaced more __attribute__((warn_unused_result)) with WARN_UNUSED_RESULT - do not use remote last_p(i|o)ng_recv for latency calculation is that make no sense at all - static' some functions Signed-off-by: Toni Uhlig --- protocol.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'protocol.h') diff --git a/protocol.h b/protocol.h index 2e11962..d9bb63a 100644 --- a/protocol.h +++ b/protocol.h @@ -135,10 +135,13 @@ struct connection { /* nonce must be incremented before sending or comparing a remote received one */ uint8_t last_nonce[crypto_box_NONCEBYTES]; - double last_ping_recv; + double last_ping_recv_remote; + double last_pong_recv_remote; + double last_ping_send; - double last_pong_recv; + double last_ping_recv; double last_pong_send; + double last_pong_recv; double latency; uint64_t total_bytes_recv; -- cgit v1.2.3