aboutsummaryrefslogtreecommitdiff
path: root/server.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-10-26 17:16:51 +0100
committerToni Uhlig <matzeton@googlemail.com>2020-10-26 17:16:51 +0100
commitb2540ad3304f13306cff98c29992b52a6f6d03b6 (patch)
tree98ee5974826eede7259138af2b5a735cd42a2844 /server.c
parentb85fe6e68f7e46dbea7fedff47da06d05966ebfb (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 'server.c')
-rw-r--r--server.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/server.c b/server.c
index b79a98a..e654a6c 100644
--- a/server.c
+++ b/server.c
@@ -128,9 +128,6 @@ enum recv_return protocol_request_ping(struct connection * const state,
strftime_local(ts, ts_str, sizeof(ts_str));
LOG(NOTICE, "Received PING with timestamp %.09lfs: %s / %uns",
ts, ts_str, extract_nsecs(ts));
- if (state->latency > 0.0f) {
- LOG(NOTICE, "PING-PONG latency: %.09lfs", state->latency);
- }
if (ev_protocol_pong(state) != 0) {
return RECV_FATAL_CALLBACK_ERROR;
@@ -152,6 +149,10 @@ enum recv_return protocol_request_pong(struct connection * const state,
LOG(NOTICE, "Received PONG with timestamp %.09lfs: %s / %uns / %zu outstanding PONG's",
ts, ts_str, extract_nsecs(ts), state->awaiting_pong);
+ if (state->latency > 0.0) {
+ LOG(NOTICE, "PING-PONG latency: %.09lfs", state->latency);
+ }
+
if (state->awaiting_pong > 3) {
LOG(ERROR, "Waiting for more than 3 PONG's, disconnecting..");
return RECV_FATAL_CALLBACK_ERROR;