mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
b04529c380
- amneziawg is now a VPN protocol and no longer a Wireguard implementation - Use it with VPN_TYPE=amneziawg - document AMNEZIAWG_* options in Dockerfile - document amneziawg support in readme - separate amneziawg settings and code from wireguard - re-use code from wireguard whenever possible
8 lines
96 B
Go
8 lines
96 B
Go
package vpn
|
|
|
|
const (
|
|
AmneziaWg = "amneziawg"
|
|
OpenVPN = "openvpn"
|
|
Wireguard = "wireguard"
|
|
)
|