diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-10-26 17:16:51 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-10-26 17:16:51 +0100 |
commit | b2540ad3304f13306cff98c29992b52a6f6d03b6 (patch) | |
tree | 98ee5974826eede7259138af2b5a735cd42a2844 /protocol.h | |
parent | b85fe6e68f7e46dbea7fedff47da06d05966ebfb (diff) |
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 <matzeton@googlemail.com>
Diffstat (limited to 'protocol.h')
-rw-r--r-- | protocol.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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; |