Files
gluetun/internal/constants/vpn.go

36 lines
916 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
// Cyberghost is a VPN provider.
2021-02-06 18:31:14 +00:00
Cyberghost = "cyberghost"
// HideMyAss is a VPN provider.
HideMyAss = "hidemyass"
// Mullvad is a VPN provider.
Mullvad = "mullvad"
2020-10-20 02:45:28 +00:00
// NordVPN is a VPN provider.
2021-02-06 18:31:14 +00:00
Nordvpn = "nordvpn"
2020-11-08 20:56:49 -05:00
// Privado is a VPN provider.
2021-02-06 18:31:14 +00:00
Privado = "privado"
// PrivateInternetAccess is a VPN provider.
PrivateInternetAccess = "private internet access"
2021-03-05 22:58:57 -05:00
// Privatevpn is a VPN provider.
Privatevpn = "privatevpn"
// PureVPN is a VPN provider.
Purevpn = "purevpn"
// Surfshark is a VPN provider.
Surfshark = "surfshark"
// Torguard is a VPN provider.
Torguard = "torguard"
// Vyprvpn is a VPN provider.
Vyprvpn = "vyprvpn"
// Windscribe is a VPN provider.
Windscribe = "windscribe"
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
)