Files
gluetun/internal/constants/vpn.go

34 lines
1001 B
Go
Raw Normal View History

2020-04-12 20:01:33 +00:00
package constants
import (
2020-07-26 12:07:06 +00:00
"github.com/qdm12/gluetun/internal/models"
2020-04-12 20:01:33 +00:00
)
const (
2020-10-20 02:45:28 +00:00
// PrivateInternetAccess is a VPN provider.
2020-04-12 20:01:33 +00:00
PrivateInternetAccess models.VPNProvider = "private internet access"
2020-10-20 02:45:28 +00:00
// Mullvad is a VPN provider.
2020-04-12 20:01:33 +00:00
Mullvad models.VPNProvider = "mullvad"
2020-10-20 02:45:28 +00:00
// Windscribe is a VPN provider.
2020-04-12 20:01:33 +00:00
Windscribe models.VPNProvider = "windscribe"
2020-10-20 02:45:28 +00:00
// Surfshark is a VPN provider.
2020-05-29 07:24:27 -04:00
Surfshark models.VPNProvider = "surfshark"
2020-10-20 02:45:28 +00:00
// Cyberghost is a VPN provider.
Cyberghost models.VPNProvider = "cyberghost"
2020-10-20 02:45:28 +00:00
// Vyprvpn is a VPN provider.
2020-07-13 08:04:35 -04:00
Vyprvpn models.VPNProvider = "vyprvpn"
2020-10-20 02:45:28 +00:00
// NordVPN is a VPN provider.
2020-07-15 18:14:45 -04:00
Nordvpn models.VPNProvider = "nordvpn"
2020-10-20 02:45:28 +00:00
// PureVPN is a VPN provider.
2020-07-25 11:19:45 -04:00
Purevpn models.VPNProvider = "purevpn"
2020-11-08 20:56:49 -05:00
// Privado is a VPN provider.
Privado models.VPNProvider = "privado"
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).
2020-04-12 20:01:33 +00:00
TCP models.NetworkProtocol = "tcp"
2020-10-20 02:45:28 +00:00
// UDP is a network protocol (unreliable and faster than TCP).
2020-04-12 20:01:33 +00:00
UDP models.NetworkProtocol = "udp"
)