Files
gluetun/internal/constants/vpn.go
Quentin McGaw 54b7e23974 chore(constants): internal/constants/providers
- New package to avoid package import cycles
2022-04-16 19:30:26 +00:00

14 lines
254 B
Go

package constants
const (
OpenVPN = "openvpn"
Wireguard = "wireguard"
)
const (
// TCP is a network protocol (reliable and slower than UDP).
TCP string = "tcp"
// UDP is a network protocol (unreliable and faster than TCP).
UDP string = "udp"
)