aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/compat.h2
-rw-r--r--src/config.c2
-rw-r--r--src/config.h2
-rw-r--r--src/cookie.c2
-rw-r--r--src/cookie.h2
-rw-r--r--src/crypto/blake2s.c2
-rw-r--r--src/crypto/blake2s.h2
-rw-r--r--src/crypto/chacha20poly1305.c2
-rw-r--r--src/crypto/chacha20poly1305.h2
-rw-r--r--src/crypto/curve25519.c2
-rw-r--r--src/crypto/curve25519.h2
-rw-r--r--src/crypto/siphash.c2
-rw-r--r--src/crypto/siphash.h2
-rw-r--r--src/data.c2
-rw-r--r--src/device.c2
-rw-r--r--src/device.h2
-rw-r--r--src/hashtables.c2
-rw-r--r--src/hashtables.h2
-rw-r--r--src/main.c4
-rw-r--r--src/messages.h2
-rw-r--r--src/noise.c2
-rw-r--r--src/noise.h2
-rw-r--r--src/packets.h2
-rw-r--r--src/peer.c2
-rw-r--r--src/peer.h2
-rw-r--r--src/ratelimiter.c2
-rw-r--r--src/ratelimiter.h2
-rw-r--r--src/receive.c2
-rw-r--r--src/routingtable.c2
-rw-r--r--src/routingtable.h2
-rw-r--r--src/selftest/blake2s.h2
-rw-r--r--src/selftest/chacha20poly1305.h2
-rw-r--r--src/selftest/counter.h2
-rw-r--r--src/selftest/curve25519.h2
-rw-r--r--src/selftest/routing-table.h2
-rw-r--r--src/selftest/siphash.h2
-rw-r--r--src/send.c2
-rw-r--r--src/socket.c2
-rw-r--r--src/socket.h2
-rwxr-xr-xsrc/tests/netns.sh2
-rw-r--r--src/tests/qemu/init.c2
-rw-r--r--src/timers.c2
-rw-r--r--src/timers.h2
-rw-r--r--src/uapi.h2
44 files changed, 45 insertions, 45 deletions
diff --git a/src/compat.h b/src/compat.h
index ca180e0..7564da1 100644
--- a/src/compat.h
+++ b/src/compat.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifndef COMPAT_H
#define COMPAT_H
diff --git a/src/config.c b/src/config.c
index 5d2b825..ebc6d78 100644
--- a/src/config.c
+++ b/src/config.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#include "config.h"
#include "device.h"
diff --git a/src/config.h b/src/config.h
index 8c53887..b7a76d0 100644
--- a/src/config.h
+++ b/src/config.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifndef WGCONFIG_H
#define WGCONFIG_H
diff --git a/src/cookie.c b/src/cookie.c
index cba6194..779664e 100644
--- a/src/cookie.c
+++ b/src/cookie.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#include "cookie.h"
#include "peer.h"
diff --git a/src/cookie.h b/src/cookie.h
index 13c646d..e1c8d8e 100644
--- a/src/cookie.h
+++ b/src/cookie.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifndef WGCOOKIE_H
#define WGCOOKIE_H
diff --git a/src/crypto/blake2s.c b/src/crypto/blake2s.c
index 32b1bc3..8b4aaab 100644
--- a/src/crypto/blake2s.c
+++ b/src/crypto/blake2s.c
@@ -1,6 +1,6 @@
/* Original author: Samuel Neves <sneves@dei.uc.pt>
*
- * Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+ * Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
*/
#include "blake2s.h"
diff --git a/src/crypto/blake2s.h b/src/crypto/blake2s.h
index 21ba298..c2d717a 100644
--- a/src/crypto/blake2s.h
+++ b/src/crypto/blake2s.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifndef BLAKE2S_H
#define BLAKE2S_H
diff --git a/src/crypto/chacha20poly1305.c b/src/crypto/chacha20poly1305.c
index 3b860bf..8f187fc 100644
--- a/src/crypto/chacha20poly1305.c
+++ b/src/crypto/chacha20poly1305.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+ * Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
* Copyright 2015 Martin Willi.
*/
diff --git a/src/crypto/chacha20poly1305.h b/src/crypto/chacha20poly1305.h
index 068995a..c89ae2d 100644
--- a/src/crypto/chacha20poly1305.h
+++ b/src/crypto/chacha20poly1305.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifndef CHACHA20POLY1305_H
#define CHACHA20POLY1305_H
diff --git a/src/crypto/curve25519.c b/src/crypto/curve25519.c
index ede5f10..28dddcd 100644
--- a/src/crypto/curve25519.c
+++ b/src/crypto/curve25519.c
@@ -1,7 +1,7 @@
/* Original author: Adam Langley <agl@imperialviolet.org>
*
* Copyright 2008 Google Inc. All Rights Reserved.
- * Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+ * Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
*/
#include "curve25519.h"
diff --git a/src/crypto/curve25519.h b/src/crypto/curve25519.h
index bd89e31..620302c 100644
--- a/src/crypto/curve25519.h
+++ b/src/crypto/curve25519.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifndef CURVE25519_H
#define CURVE25519_H
diff --git a/src/crypto/siphash.c b/src/crypto/siphash.c
index 2bf77c1..86ff070 100644
--- a/src/crypto/siphash.c
+++ b/src/crypto/siphash.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
*
* SipHash: a fast short-input PRF
* https://131002.net/siphash/
diff --git a/src/crypto/siphash.h b/src/crypto/siphash.h
index 102bc1d..454c7d5 100644
--- a/src/crypto/siphash.h
+++ b/src/crypto/siphash.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
*
* SipHash: a fast short-input PRF
* https://131002.net/siphash/
diff --git a/src/data.c b/src/data.c
index f8d33c6..cf5a392 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#include "noise.h"
#include "device.h"
diff --git a/src/device.c b/src/device.c
index 38009bb..c78a785 100644
--- a/src/device.c
+++ b/src/device.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#include "packets.h"
#include "socket.h"
diff --git a/src/device.h b/src/device.h
index cd62e9b..3cbbbaa 100644
--- a/src/device.h
+++ b/src/device.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifndef WGDEVICE_H
#define WGDEVICE_H
diff --git a/src/hashtables.c b/src/hashtables.c
index 534ad55..507e84a 100644
--- a/src/hashtables.c
+++ b/src/hashtables.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#include "hashtables.h"
#include "peer.h"
diff --git a/src/hashtables.h b/src/hashtables.h
index 6418316..48a260e 100644
--- a/src/hashtables.h
+++ b/src/hashtables.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifndef HASHTABLES_H
#define HASHTABLES_H
diff --git a/src/main.c b/src/main.c
index 4cdb2e7..13a801f 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#include "version.h"
#include "device.h"
@@ -40,7 +40,7 @@ static int __init mod_init(void)
goto err_device;
pr_info("WireGuard " WIREGUARD_VERSION " loaded. See www.wireguard.io for information.\n");
- pr_info("Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n");
+ pr_info("Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n");
return 0;
diff --git a/src/messages.h b/src/messages.h
index 8fa1c95..7dc09aa 100644
--- a/src/messages.h
+++ b/src/messages.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+ * Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
*
* See doc/protocol.md for more info
*/
diff --git a/src/noise.c b/src/noise.c
index 3fccd1e..9555e58 100644
--- a/src/noise.c
+++ b/src/noise.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#include "noise.h"
#include "device.h"
diff --git a/src/noise.h b/src/noise.h
index 724b0d0..e60584b 100644
--- a/src/noise.h
+++ b/src/noise.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+ * Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
*
* See doc/protocol.md and https://github.com/trevp/noise/blob/master/noise.md for more info
*/
diff --git a/src/packets.h b/src/packets.h
index 4d07adc..6530048 100644
--- a/src/packets.h
+++ b/src/packets.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifndef PACKETS_H
#define PACKETS_H
diff --git a/src/peer.c b/src/peer.c
index ae54fb7..4264fa0 100644
--- a/src/peer.c
+++ b/src/peer.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#include "peer.h"
#include "device.h"
diff --git a/src/peer.h b/src/peer.h
index 37232ba..16b3def 100644
--- a/src/peer.h
+++ b/src/peer.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifndef PEER_H
#define PEER_H
diff --git a/src/ratelimiter.c b/src/ratelimiter.c
index 8d12523..30e4175 100644
--- a/src/ratelimiter.c
+++ b/src/ratelimiter.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#include "ratelimiter.h"
#include "peer.h"
diff --git a/src/ratelimiter.h b/src/ratelimiter.h
index d934eab..c4dc9a7 100644
--- a/src/ratelimiter.h
+++ b/src/ratelimiter.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifndef RATELIMITER_H
#define RATELIMITER_H
diff --git a/src/receive.c b/src/receive.c
index 2120cca..bebd719 100644
--- a/src/receive.c
+++ b/src/receive.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#include "packets.h"
#include "device.h"
diff --git a/src/routingtable.c b/src/routingtable.c
index 1df8561..36e0bc9 100644
--- a/src/routingtable.c
+++ b/src/routingtable.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#include "routingtable.h"
#include "peer.h"
diff --git a/src/routingtable.h b/src/routingtable.h
index 3a71dab..adcc632 100644
--- a/src/routingtable.h
+++ b/src/routingtable.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifndef ROUTINGTABLE_H
#define ROUTINGTABLE_H
diff --git a/src/selftest/blake2s.h b/src/selftest/blake2s.h
index d2da1d1..7b9f352 100644
--- a/src/selftest/blake2s.h
+++ b/src/selftest/blake2s.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifdef DEBUG
static const u8 blake2s_testvecs[][BLAKE2S_OUTBYTES] = {
diff --git a/src/selftest/chacha20poly1305.h b/src/selftest/chacha20poly1305.h
index 1d79299..64f3370 100644
--- a/src/selftest/chacha20poly1305.h
+++ b/src/selftest/chacha20poly1305.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifdef DEBUG
/* ChaCha20-Poly1305 AEAD test vectors from RFC7539 2.8.2 */
diff --git a/src/selftest/counter.h b/src/selftest/counter.h
index 049af5e..3312408 100644
--- a/src/selftest/counter.h
+++ b/src/selftest/counter.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifdef DEBUG
bool packet_counter_selftest(void)
diff --git a/src/selftest/curve25519.h b/src/selftest/curve25519.h
index 4d94f3b..04b25a3 100644
--- a/src/selftest/curve25519.h
+++ b/src/selftest/curve25519.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifdef DEBUG
struct curve25519_test_vector {
diff --git a/src/selftest/routing-table.h b/src/selftest/routing-table.h
index 803dc61..a603401 100644
--- a/src/selftest/routing-table.h
+++ b/src/selftest/routing-table.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifdef DEBUG
static inline struct in_addr *ip4(u8 a, u8 b, u8 c, u8 d)
diff --git a/src/selftest/siphash.h b/src/selftest/siphash.h
index 0fbe793..0ef20f5 100644
--- a/src/selftest/siphash.h
+++ b/src/selftest/siphash.h
@@ -1,6 +1,6 @@
/* Test cases for siphash.c
*
- * Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+ * Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
*
* SipHash: a fast short-input PRF
* https://131002.net/siphash/
diff --git a/src/send.c b/src/send.c
index c1408b5..e04a245 100644
--- a/src/send.c
+++ b/src/send.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#include "packets.h"
#include "timers.h"
diff --git a/src/socket.c b/src/socket.c
index 7eae766..9075e2a 100644
--- a/src/socket.c
+++ b/src/socket.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#include "device.h"
#include "peer.h"
diff --git a/src/socket.h b/src/socket.h
index fb4c578..3e99683 100644
--- a/src/socket.h
+++ b/src/socket.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifndef WGSOCKET_H
#define WGSOCKET_H
diff --git a/src/tests/netns.sh b/src/tests/netns.sh
index 6d20c1b..8fc9e90 100755
--- a/src/tests/netns.sh
+++ b/src/tests/netns.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-# Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+# Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
# This script tests the below topology:
#
diff --git a/src/tests/qemu/init.c b/src/tests/qemu/init.c
index d23ec37..f65b132 100644
--- a/src/tests/qemu/init.c
+++ b/src/tests/qemu/init.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#define _GNU_SOURCE
#include <unistd.h>
diff --git a/src/timers.c b/src/timers.c
index 0abdbdb..91ef0b3 100644
--- a/src/timers.c
+++ b/src/timers.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#include "timers.h"
#include "device.h"
diff --git a/src/timers.h b/src/timers.h
index 41014ef..9c7af01 100644
--- a/src/timers.h
+++ b/src/timers.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifndef WGTIMERS_H
#define WGTIMERS_H
diff --git a/src/uapi.h b/src/uapi.h
index df45c96..eb8d9d3 100644
--- a/src/uapi.h
+++ b/src/uapi.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
*
* Userspace API for WireGuard
* ---------------------------