Files
gluetun/internal/constants/vpn.go

32 lines
797 B
Go
Raw Normal View History

2020-04-12 20:01:33 +00:00
package constants
const (
2020-10-20 02:45:28 +00:00
// PrivateInternetAccess is a VPN provider.
2021-02-06 18:31:14 +00:00
PrivateInternetAccess = "private internet access"
2020-10-20 02:45:28 +00:00
// Mullvad is a VPN provider.
2021-02-06 18:31:14 +00:00
Mullvad = "mullvad"
2020-10-20 02:45:28 +00:00
// Windscribe is a VPN provider.
2021-02-06 18:31:14 +00:00
Windscribe = "windscribe"
2020-10-20 02:45:28 +00:00
// Surfshark is a VPN provider.
2021-02-06 18:31:14 +00:00
Surfshark = "surfshark"
2020-10-20 02:45:28 +00:00
// Cyberghost is a VPN provider.
2021-02-06 18:31:14 +00:00
Cyberghost = "cyberghost"
2020-10-20 02:45:28 +00:00
// Vyprvpn is a VPN provider.
2021-02-06 18:31:14 +00:00
Vyprvpn = "vyprvpn"
2020-10-20 02:45:28 +00:00
// NordVPN is a VPN provider.
2021-02-06 18:31:14 +00:00
Nordvpn = "nordvpn"
2020-10-20 02:45:28 +00:00
// PureVPN is a VPN provider.
2021-02-06 18:31:14 +00:00
Purevpn = "purevpn"
2020-11-08 20:56:49 -05:00
// Privado is a VPN provider.
2021-02-06 18:31:14 +00:00
Privado = "privado"
// Torguard is a VPN provider.
Torguard = "torguard"
2020-04-12 20:01:33 +00:00
)
const (
2020-10-20 02:45:28 +00:00
// TCP is a network protocol (reliable and slower than UDP).
2021-02-06 18:31:14 +00:00
TCP string = "tcp"
2020-10-20 02:45:28 +00:00
// UDP is a network protocol (unreliable and faster than TCP).
2021-02-06 18:31:14 +00:00
UDP string = "udp"
2020-04-12 20:01:33 +00:00
)