aboutsummaryrefslogtreecommitdiff
path: root/server.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-10-26 09:39:35 +0100
committerToni Uhlig <matzeton@googlemail.com>2020-10-26 09:39:35 +0100
commitb85fe6e68f7e46dbea7fedff47da06d05966ebfb (patch)
tree6023533c5a37d27a00b63f02567fc11a6026470f /server.c
parent4ba484be6ef6e1f759fdb6dbde056592143cbd14 (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.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/server.c b/server.c
index a9a75b6..b79a98a 100644
--- a/server.c
+++ b/server.c
@@ -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");