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" )