diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-10-26 09:39:35 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-10-26 09:39:35 +0100 |
commit | b85fe6e68f7e46dbea7fedff47da06d05966ebfb (patch) | |
tree | 6023533c5a37d27a00b63f02567fc11a6026470f /server.c | |
parent | 4ba484be6ef6e1f759fdb6dbde056592143cbd14 (diff) |
Finished timestamp refactoring.
- adjusted -W* CFLAGS
- replaced suseconds_t with uint32_t for nanoseconds extraction
- fixed (now) invalid format specifiers
- added WARN_UNUSED_RESULT macro usable to warn if a fn return value is unused
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -126,7 +126,7 @@ enum recv_return protocol_request_ping(struct connection * const state, (void)processed; strftime_local(ts, ts_str, sizeof(ts_str)); - LOG(NOTICE, "Received PING with timestamp %.09lfs: %s / %lluns", + 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); @@ -149,7 +149,7 @@ enum recv_return protocol_request_pong(struct connection * const state, (void)processed; strftime_local(ts, ts_str, sizeof(ts_str)); - LOG(NOTICE, "Received PONG with timestamp %.09lfs: %s / %lluns / %zu outstanding PONG's", + LOG(NOTICE, "Received PONG with timestamp %.09lfs: %s / %uns / %zu outstanding PONG's", ts, ts_str, extract_nsecs(ts), state->awaiting_pong); if (state->awaiting_pong > 3) { @@ -325,7 +325,9 @@ int main(int argc, char ** argv) return 2; } - srandom(time(NULL)); + double ts = create_timestamp(); + uint64_t ts_seed = (uint64_t)ts + extract_nsecs(ts); + srandom(ts_seed); if (sodium_init() != 0) { LOG(ERROR, "Sodium init failed"); |