diff options
author | danrl <mail@danrl.com> | 2016-11-15 16:55:47 +0100 |
---|---|---|
committer | danrl <mail@danrl.com> | 2016-11-15 21:43:09 +0100 |
commit | 9caa982c1958057a41c8b0bead13095d3c58466f (patch) | |
tree | 92c8418af26b7342a8c540160064a001b3127021 /protocols/luci-proto-wireguard/Makefile | |
parent | 5566b3acef245873d7cbb294f637a63a7f58f634 (diff) |
luci-proto-wireguard: WireGuard VPN Protocol (New)
WireGuard is a novel VPN that runs inside the Linux Kernel and utilizes
state-of-the-art cryptography. It aims to be faster, simpler, leaner, and
more useful than IPSec, while avoiding the massive headache. It intends to
be considerably more performant than OpenVPN. WireGuard is designed as a
general purpose VPN for running on embedded interfaces and super computers
alike, fit for many different circumstances.
It runs over UDP.
Signed-off-by: Dan Lüdtke mail@danrl.com
Diffstat (limited to 'protocols/luci-proto-wireguard/Makefile')
-rw-r--r-- | protocols/luci-proto-wireguard/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/protocols/luci-proto-wireguard/Makefile b/protocols/luci-proto-wireguard/Makefile new file mode 100644 index 000000000..4cd964fa5 --- /dev/null +++ b/protocols/luci-proto-wireguard/Makefile @@ -0,0 +1,15 @@ +# +# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org> +# +# This is free software, licensed under the Apache License, Version 2.0 . +# + +include $(TOPDIR)/rules.mk + +LUCI_TITLE:=Support for WireGuard VPN +LUCI_DEPENDS:=+wireguard + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature + |