From 32216b8d5dc5a6f0e3185b0d959e4db855ce7ac5 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Sun, 11 Dec 2016 14:25:28 +0100 Subject: global: move to consistent use of uN instead of uintN_t for kernel code Signed-off-by: Jason A. Donenfeld --- src/cookie.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cookie.h') diff --git a/src/cookie.h b/src/cookie.h index 2417cc0..4ea20e1 100644 --- a/src/cookie.h +++ b/src/cookie.h @@ -13,14 +13,14 @@ struct sk_buff; struct cookie_checker { u8 secret[NOISE_HASH_LEN]; - uint64_t secret_birthdate; + u64 secret_birthdate; struct rw_semaphore secret_lock; struct ratelimiter ratelimiter; struct wireguard_device *device; }; struct cookie { - uint64_t birthdate; + u64 birthdate; bool is_valid; u8 cookie[COOKIE_LEN]; bool have_sent_mac1; -- cgit v1.2.3-59-g8ed1b