]> git.ipfire.org Git - thirdparty/wireguard-tools.git/commitdiff
Update copyright
authorJason A. Donenfeld <Jason@zx2c4.com>
Tue, 10 Jan 2017 05:36:19 +0000 (06:36 +0100)
committerJason A. Donenfeld <Jason@zx2c4.com>
Tue, 10 Jan 2017 05:36:19 +0000 (06:36 +0100)
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
28 files changed:
contrib/external-tests/go/main.go
contrib/external-tests/rust/src/main.rs
contrib/extract-keys/config.c
contrib/extract-keys/extract-keys.c
contrib/nat-hole-punching/nat-punch-client.c
contrib/nat-hole-punching/nat-punch-server.c
contrib/ncat-client-server/client.sh
contrib/ncat-client-server/server.sh
contrib/synergy/synergy-client.sh
contrib/synergy/synergy-server.sh
src/base64.h
src/config.c
src/config.h
src/curve25519.c
src/curve25519.h
src/genkey.c
src/ipc.c
src/ipc.h
src/pubkey.c
src/set.c
src/setconf.c
src/show.c
src/showconf.c
src/subcommands.h
src/terminal.c
src/terminal.h
src/wg-quick.bash
src/wg.c

index 0f65ec4f907287df38c47bf6a72b8422eae1c44c..11c2f868301cf6d6bc396baa82669472ea0a4308 100644 (file)
@@ -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. */
 
 package main
 
index c75cdede77644ab0d6f483c610077d8c1744c7b2..232375cdd0f73754c7bcddafd8b8222967fb4a15 100644 (file)
@@ -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. */
 
 extern crate screech;
 extern crate crypto;
index 4c0e9b47c155c2b16277c482c696500c0647553f..abd435fe99edd01c03e94b2f9982bb2f0e563035 100644 (file)
@@ -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. */
 
 struct def {
        const char *name;
index 335f962882585fc084c005b3235644595227dd1b..8a5f24ed34bbc4bd4034515acaf3925c5d6a4032 100644 (file)
@@ -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 <endian.h>
 #include <errno.h>
index 6d0b5f1d01fabdf9c7efccf74a6f05ab9b094172..65f32494539358f88d851280e1294c0a789d2da4 100644 (file)
@@ -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. */
 
 /* Example only. Do not run in production. */
 
index 425885e2d25044e79d1357ebf61053c433dc0fd0..ab5ddd730cd73bbe0c81e662c53c8f614259c62f 100644 (file)
@@ -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. */
 
 /* Example only. Do not run in production. */
 
index e59d9cebdc2855cb0d517bc70fbf9512b2beb21e..b49a05e25e94721254156110a44a42d946bfb77b 100755 (executable)
@@ -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.
 
 set -e
 [[ $UID == 0 ]] || { echo "You must be root to run this."; exit 1; }
index bb45718a6a619f026e73f8147680bb2b24d87687..b527cf55c9f16781c5276d68bd88f5e177204d68 100755 (executable)
@@ -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.
 
 if [[ -z $NCAT_REMOTE_ADDR ]]; then
        ip link del dev wg0 2>/dev/null
index 07b32d32980d5ddf0fa348182e0c9259ea6e6758..ee8727a5a0d7be7652ef47a94cb82a7fe65ec0bb 100755 (executable)
@@ -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.
 
 set -ex
 if [[ $UID == 0 ]]; then
index ac028babd2f4f87b1750856b979dec54e58e9d81..28321645213218081d8c710f8de150a853dea029 100755 (executable)
@@ -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.
 
 set -ex
 if [[ $UID == 0 ]]; then
index 748b5d95208fc0ef0b9d46a70c49174a91bc7f2f..4ad0ac359c990f0337180321fb1e0702d5dec3fd 100644 (file)
@@ -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 BASE64_H
 #define BASE64_H
index 83c7db11b64c35251502fba46d35e69c830151bb..ddeec1556ea072c21066bf62d9d632db1c31f98e 100644 (file)
@@ -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 <arpa/inet.h>
index 9338c72e4695eed10e0d48dd32d6970a14cfaaff..5f7761fc9979ce2b09389bc0b52eeb7c33def48b 100644 (file)
@@ -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 CONFIG_H
 #define CONFIG_H
index 3c147c8950ffac5bbb77bf30ccfb051f4f6f7c0b..29a4531a1ee1bb1db271317ef8d756e9274e8ae6 100644 (file)
@@ -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.
  *
  *   Redistribution and use in source and binary forms of this file, with or
  *   without modification, are permitted provided that the following conditions
index 45ae1ce8371e036cb011244c6fd5865567148823..6e651e9f498a527e2ec72ec85fb1b1ed3def6e8c 100644 (file)
@@ -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
index 0bdcfbbbc0ce517ec94da7ed7e89c34e6b490de6..d3bc846933dc9caeb4cf6564d81953b6ff7f8826 100644 (file)
@@ -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 <errno.h>
 #include <stdio.h>
index 05609b4b5ac53c250014e66a10e0f243bfdd2578..a926261f48e0811cf348d5a984aced39a53ec577 100644 (file)
--- a/src/ipc.c
+++ b/src/ipc.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. */
 
 #ifdef __linux__
 #include <libmnl/libmnl.h>
index 9571ff98b674ef59f1a3808f5e84f912df4156e5..24126107a81e86b91251b27340760d41fe26de24 100644 (file)
--- a/src/ipc.h
+++ b/src/ipc.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 IPC_H
 #define IPC_H
index d61df036ebd5bc0835b27f1f1e28023ba62dbace..f56722327e6eb2634c0829132323625bb0461341 100644 (file)
@@ -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 <errno.h>
 #include <resolv.h>
index 236504be9ba1f7490f8720cf939a21cd7afebb51..48b005097ab56aa78f39ea7c0533ea6d566ec5e4 100644 (file)
--- a/src/set.c
+++ b/src/set.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 <stdio.h>
 #include <stdlib.h>
index 4de6117e0b0d843892f2b097ba2e5d43e22b9c90..c70edab2038bdd19bf02e2a11c98304812912f94 100644 (file)
@@ -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 <stddef.h>
 #include <stdio.h>
index 04a634ca45baa424b1bb108ac61984071f6bfcdf..124e32304fe2167afe627672fdb24ed60f91864d 100644 (file)
@@ -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 <arpa/inet.h>
 #include <inttypes.h>
index fe811e6a77375498cc4b14e15e5fcb3ff5f7fe1e..d2f36e0d06bb8dd35711b07aade71e73fe5bb595 100644 (file)
@@ -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 <arpa/inet.h>
 #include <netinet/in.h>
index 5da0226ffcdd1fcaf53a11328ef2557bbe413ba5..7bbf70a58c984e2a894d8c8745cd8ddc59f92480 100644 (file)
@@ -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 SUBCOMMANDS_H
 #define SUBCOMMANDS_H
index 139cc7190cac52f37d9b5e5fd70d74895f8ebb9a..862bb4af7702dedc4e5a72e9ca463fdffdff35e4 100644 (file)
@@ -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 <ctype.h>
index ee03f8d42ecb485ceb336f7c5e0b4177e2aa09c5..2c1fb3711c0264da1839bae2d273bae4d0b99eaa 100644 (file)
@@ -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 TERMINAL_H
 #define TERMINAL_H
index c9157ad9842a70830406a30f870ebdbf88a1775c..baedd351a083720c98043a9f9a6e163cd0d20898 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# Copyright (c) 2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
+# Copyright (C) 2016-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
 #
 
 set -e -o pipefail
index 616107e42c6cfc502d4c09edebd5f508ac07cc82..0ec64ebf3921d2b88e2ccb78562102d086389a40 100644 (file)
--- a/src/wg.c
+++ b/src/wg.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 <stddef.h>
 #include <stdio.h>