aboutsummaryrefslogtreecommitdiff
path: root/client.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-10-24 18:26:40 +0200
committerToni Uhlig <matzeton@googlemail.com>2020-10-24 18:26:40 +0200
commit4ba484be6ef6e1f759fdb6dbde056592143cbd14 (patch)
tree0dc9ec3162d6278fe28a726495d1986742c5a795 /client.c
parent749a4b2eda0b3b2d7a796530bb64fdfb4b5f3df4 (diff)
time/timestamp refactoring
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'client.c')
-rw-r--r--client.c33
1 files changed, 19 insertions, 14 deletions
diff --git a/client.c b/client.c
index eb3cea7..e759b03 100644
--- a/client.c
+++ b/client.c
@@ -103,15 +103,15 @@ enum recv_return protocol_request_ping(struct connection * const state,
size_t * const processed)
{
struct protocol_ping const * const ping_pkt = (struct protocol_ping *)buffer;
+ char ts_str[TIMESTAMP_STRLEN];
+ double ts = to_timestamp(be64toh(ping_pkt->timestamp.sec), ntohl(ping_pkt->timestamp.nsec));
(void)processed;
- LOG(NOTICE,
- "Received PING with timestamp: %.*s / %lluus",
- sizeof(ping_pkt->timestamp),
- ping_pkt->timestamp,
- state->last_ping_recv_usec);
- if (state->latency_usec > 0.0) {
- LOG(NOTICE, "PING-PONG latency: %.02lfms", state->latency_usec / 1000.0);
+ strftime_local(ts, ts_str, sizeof(ts_str));
+ LOG(NOTICE, "Received PING with timestamp %.09lfs: %s / %lluns",
+ 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) {
@@ -126,13 +126,18 @@ enum recv_return protocol_request_pong(struct connection * const state,
size_t * const processed)
{
struct protocol_pong const * const pong_pkt = (struct protocol_pong *)buffer;
+ char ts_str[TIMESTAMP_STRLEN];
+ double ts = to_timestamp(be64toh(pong_pkt->timestamp.sec), ntohl(pong_pkt->timestamp.nsec));
+
(void)processed;
- LOG(NOTICE,
- "Received PONG with timestamp: %.*s / %lluus / %zu outstanding PONG's",
- sizeof(pong_pkt->timestamp),
- pong_pkt->timestamp,
- state->last_pong_recv_usec,
- state->awaiting_pong);
+ strftime_local(ts, ts_str, sizeof(ts_str));
+ LOG(NOTICE, "Received PONG with timestamp %.09lfs: %s / %lluns / %zu outstanding PONG's",
+ ts, ts_str, extract_nsecs(ts), state->awaiting_pong);
+
+ if (state->awaiting_pong > 3) {
+ LOG(ERROR, "Waiting for more than 3 PONG's, disconnecting..");
+ return RECV_FATAL_CALLBACK_ERROR;
+ }
return RECV_SUCCESS;
}
@@ -351,7 +356,7 @@ int main(int argc, char ** argv)
}
LOG(NOTICE, "Connecting to %s:%s", ip_str, opts.port);
- if (bufferevent_socket_connect(bev, ai->ai_addr, ai->ai_addrlen) == 0) {
+ if (bufferevent_socket_connect(bev, ai->ai_addr, (int)ai->ai_addrlen) == 0) {
bev_connected = 1;
break;
}