aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-01-02 01:57:38 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2019-01-02 01:57:38 +0100
commita7a2e52315718f21e4bf1e14bffeebd6e300699d (patch)
treef6839be3c22304eee2dba55e3d398065808e1a64
parentCopyright and license headers (diff)
downloadwireguard-rs-a7a2e52315718f21e4bf1e14bffeebd6e300699d.tar.xz
wireguard-rs-a7a2e52315718f21e4bf1e14bffeebd6e300699d.zip
Update copyrightjm/master
-rw-r--r--benches/criterion.rs2
-rw-r--r--src/anti_replay.rs2
-rw-r--r--src/consts.rs2
-rw-r--r--src/cookie.rs2
-rw-r--r--src/error.rs2
-rw-r--r--src/interface/config.rs2
-rw-r--r--src/interface/grim_reaper.rs2
-rw-r--r--src/interface/mod.rs2
-rw-r--r--src/interface/peer_server.rs2
-rw-r--r--src/ip_packet.rs2
-rw-r--r--src/lib.rs2
-rw-r--r--src/main.rs2
-rw-r--r--src/message.rs2
-rw-r--r--src/noise.rs2
-rw-r--r--src/peer.rs2
-rw-r--r--src/ratelimiter.rs2
-rw-r--r--src/router.rs2
-rw-r--r--src/timer.rs2
-rw-r--r--src/timestamp.rs2
-rw-r--r--src/types.rs2
-rw-r--r--src/udp/frame.rs2
-rw-r--r--src/udp/mod.rs2
-rw-r--r--src/xchacha20poly1305.rs2
-rwxr-xr-xtests/netns.sh2
-rwxr-xr-xtests/timers.sh2
-rwxr-xr-xtools/wg-quick.bash2
26 files changed, 26 insertions, 26 deletions
diff --git a/benches/criterion.rs b/benches/criterion.rs
index 5e30abb..e56299f 100644
--- a/benches/criterion.rs
+++ b/benches/criterion.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
#![feature(try_from)]
diff --git a/src/anti_replay.rs b/src/anti_replay.rs
index e71285d..2906627 100644
--- a/src/anti_replay.rs
+++ b/src/anti_replay.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
use failure::Error;
diff --git a/src/consts.rs b/src/consts.rs
index c9ac73a..b8de5c8 100644
--- a/src/consts.rs
+++ b/src/consts.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
#![allow(dead_code)]
diff --git a/src/cookie.rs b/src/cookie.rs
index c01c7c4..35bdafd 100644
--- a/src/cookie.rs
+++ b/src/cookie.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
#![allow(unused)]
diff --git a/src/error.rs b/src/error.rs
index b2a4b61..d1c4d10 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
//use failure::Error;
diff --git a/src/interface/config.rs b/src/interface/config.rs
index 2f8319c..c94643f 100644
--- a/src/interface/config.rs
+++ b/src/interface/config.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
//! The configuration logic for userspace WireGuard.
diff --git a/src/interface/grim_reaper.rs b/src/interface/grim_reaper.rs
index c48782f..1a4c62e 100644
--- a/src/interface/grim_reaper.rs
+++ b/src/interface/grim_reaper.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
use failure::Error;
diff --git a/src/interface/mod.rs b/src/interface/mod.rs
index 8661d9d..f7d3839 100644
--- a/src/interface/mod.rs
+++ b/src/interface/mod.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
mod config;
diff --git a/src/interface/peer_server.rs b/src/interface/peer_server.rs
index a7c82cd..c8d5aa1 100644
--- a/src/interface/peer_server.rs
+++ b/src/interface/peer_server.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
use consts::{REKEY_TIMEOUT, KEEPALIVE_TIMEOUT, STALE_SESSION_TIMEOUT,
diff --git a/src/ip_packet.rs b/src/ip_packet.rs
index 3479e20..013fac1 100644
--- a/src/ip_packet.rs
+++ b/src/ip_packet.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
use rips_packets::ipv4::Ipv4Packet;
diff --git a/src/lib.rs b/src/lib.rs
index 99c8fa4..9ca0d34 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
#![allow(unknown_lints)]
diff --git a/src/main.rs b/src/main.rs
index 7460ea7..0837b4a 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
#![feature(test)]
diff --git a/src/message.rs b/src/message.rs
index 12b2eb7..5070e28 100644
--- a/src/message.rs
+++ b/src/message.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
#![allow(unused)]
diff --git a/src/noise.rs b/src/noise.rs
index c26a6fe..32fe4b3 100644
--- a/src/noise.rs
+++ b/src/noise.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
use failure::Error;
diff --git a/src/peer.rs b/src/peer.rs
index 4d9eab9..b6d28e8 100644
--- a/src/peer.rs
+++ b/src/peer.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
use anti_replay::AntiReplay;
diff --git a/src/ratelimiter.rs b/src/ratelimiter.rs
index 07aeb43..e7574b8 100644
--- a/src/ratelimiter.rs
+++ b/src/ratelimiter.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
#![allow(dead_code)]
diff --git a/src/router.rs b/src/router.rs
index 895254a..aec9b9d 100644
--- a/src/router.rs
+++ b/src/router.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
use failure::{Error, err_msg};
diff --git a/src/timer.rs b/src/timer.rs
index 659d313..326dc4f 100644
--- a/src/timer.rs
+++ b/src/timer.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
use consts::TIMER_RESOLUTION;
diff --git a/src/timestamp.rs b/src/timestamp.rs
index 69e5d96..2970fb0 100644
--- a/src/timestamp.rs
+++ b/src/timestamp.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
use byteorder::{ByteOrder, BigEndian};
diff --git a/src/types.rs b/src/types.rs
index d32d4ce..b446b25 100644
--- a/src/types.rs
+++ b/src/types.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
use base64;
diff --git a/src/udp/frame.rs b/src/udp/frame.rs
index 8d26db3..5a9e1d2 100644
--- a/src/udp/frame.rs
+++ b/src/udp/frame.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
use std::io;
diff --git a/src/udp/mod.rs b/src/udp/mod.rs
index 2a512cd..5eb2e94 100644
--- a/src/udp/mod.rs
+++ b/src/udp/mod.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
#![allow(unused)]
diff --git a/src/xchacha20poly1305.rs b/src/xchacha20poly1305.rs
index 4a39e37..eb57bda 100644
--- a/src/xchacha20poly1305.rs
+++ b/src/xchacha20poly1305.rs
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
use byteorder::{ByteOrder, LittleEndian};
diff --git a/tests/netns.sh b/tests/netns.sh
index a959f35..5dd67d6 100755
--- a/tests/netns.sh
+++ b/tests/netns.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# SPDX-License-Identifier: GPL-2.0
#
-# Copyright (C) 2015-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+# Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
#
# This script tests the below topology:
#
diff --git a/tests/timers.sh b/tests/timers.sh
index 6a3f7de..29e282c 100755
--- a/tests/timers.sh
+++ b/tests/timers.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# SPDX-License-Identifier: GPL-2.0
#
-# Copyright (C) 2015-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+# Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
#
# This script tests the below topology:
#
diff --git a/tools/wg-quick.bash b/tools/wg-quick.bash
index 9942371..893d31c 100755
--- a/tools/wg-quick.bash
+++ b/tools/wg-quick.bash
@@ -1,7 +1,7 @@
#!/bin/bash
# SPDX-License-Identifier: GPL-2.0
#
-# Copyright (C) 2015-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+# Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
#
# Modified by Jake McGinty <me@jake.su> for the userspace macOS implementation.
#