aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/containers.h
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-01-22 13:38:52 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2019-01-23 14:29:44 +0100
commita6e4ec487debf11785b3f82a8c821ae9b7356024 (patch)
tree225b287e2a8d242e0676bcf433e54a347b7536d6 /src/containers.h
parentcontrib: introduce simple highlighter library (diff)
downloadwireguard-tools-a6e4ec487debf11785b3f82a8c821ae9b7356024.tar.xz
wireguard-tools-a6e4ec487debf11785b3f82a8c821ae9b7356024.zip
netlink: use __kernel_timespec for handshake time
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/containers.h')
-rw-r--r--src/containers.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/containers.h b/src/containers.h
index 2144052..59a213e 100644
--- a/src/containers.h
+++ b/src/containers.h
@@ -15,6 +15,12 @@
#include "../uapi/wireguard.h"
+/* Cross platform __kernel_timespec */
+struct timespec64 {
+ int64_t tv_sec;
+ int64_t tv_nsec;
+};
+
struct wgallowedip {
uint16_t family;
union {
@@ -45,7 +51,7 @@ struct wgpeer {
struct sockaddr_in6 addr6;
} endpoint;
- struct timespec last_handshake_time;
+ struct timespec64 last_handshake_time;
uint64_t rx_bytes, tx_bytes;
uint16_t persistent_keepalive_interval;