diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-05-19 05:55:58 +0200 |
---|---|---|
committer | Hans Dedecker <dedeckeh@gmail.com> | 2018-05-19 09:02:33 +0200 |
commit | aa30eb5b073c93ad00742a5a4046ac42e15b4b7a (patch) | |
tree | b483429d09cca3725e9cbdae48496d0548c466de /package/network/services/wireguard/Makefile | |
parent | 5399de754ddef4fb406a453a1bbb854ceb75c611 (diff) | |
download | upstream-aa30eb5b073c93ad00742a5a4046ac42e15b4b7a.tar.gz upstream-aa30eb5b073c93ad00742a5a4046ac42e15b4b7a.tar.bz2 upstream-aa30eb5b073c93ad00742a5a4046ac42e15b4b7a.zip |
wireguard: bump to 20180519
* chacha20poly1305: add mips32 implementation
"The OpenWRT Commit" - this significantly speeds up performance on cheap
plastic MIPS routers, and presumably the remaining MIPS32r2 super computers
out there.
* timers: reinitialize state on init
* timers: round up instead of down in slack_time
* timers: remove slack_time
* timers: clear send_keepalive timer on sending handshake response
* timers: no need to clear keepalive in persistent keepalive
Andrew He and I have helped simplify the timers and remove some old warts,
making the whole system a bit easier to analyze.
* tools: fix errno propagation and messages
Error messages are now more coherent.
* device: remove allowedips before individual peers
This avoids an O(n^2) traversal in favor of an O(n) one. Before systems with
many peers would grind when deleting the interface.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'package/network/services/wireguard/Makefile')
-rw-r--r-- | package/network/services/wireguard/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/network/services/wireguard/Makefile b/package/network/services/wireguard/Makefile index 770efe4948..c9ade769a6 100644 --- a/package/network/services/wireguard/Makefile +++ b/package/network/services/wireguard/Makefile @@ -11,12 +11,12 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=wireguard -PKG_VERSION:=0.0.20180514 +PKG_VERSION:=0.0.20180519 PKG_RELEASE:=1 PKG_SOURCE:=WireGuard-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://git.zx2c4.com/WireGuard/snapshot/ -PKG_HASH:=e895b65e06e85429403be3d1987577a6967476b069f0ff53caead6f682f466da +PKG_HASH:=8846b3006c3f7e079bb38a4c985ccc2981e259f56c927b4cf47cbc1420e1c462 PKG_LICENSE:=GPL-2.0 Apache-2.0 PKG_LICENSE_FILES:=COPYING |