Files
gluetun/internal/constants/vpn.go

32 lines
920 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 (
// PrivateInternetAccess is a VPN provider
PrivateInternetAccess models.VPNProvider = "private internet access"
// Mullvad is a VPN provider
Mullvad models.VPNProvider = "mullvad"
// Windscribe is a VPN provider
Windscribe models.VPNProvider = "windscribe"
2020-05-29 07:24:27 -04:00
// Surfshark is a VPN provider
Surfshark models.VPNProvider = "surfshark"
// Cyberghost is a VPN provider
Cyberghost models.VPNProvider = "cyberghost"
2020-07-13 08:04:35 -04:00
// Vyprvpn is a VPN provider
Vyprvpn models.VPNProvider = "vyprvpn"
2020-07-15 18:14:45 -04:00
// NordVPN is a VPN provider
Nordvpn models.VPNProvider = "nordvpn"
2020-07-25 11:19:45 -04:00
// PureVPN is a VPN provider
Purevpn models.VPNProvider = "purevpn"
2020-04-12 20:01:33 +00:00
)
const (
// TCP is a network protocol (reliable and slower than UDP)
TCP models.NetworkProtocol = "tcp"
// UDP is a network protocol (unreliable and faster than TCP)
UDP models.NetworkProtocol = "udp"
)