Feat: add verify-x509-name to Windscribe Openvpn config (#529)

This commit is contained in:
Quentin McGaw
2021-07-28 07:18:08 -07:00
committed by GitHub
parent 7d4f5c8906
commit c777f8d97d
8 changed files with 381 additions and 47 deletions

View File

@@ -9,7 +9,9 @@ type OpenVPNConnection struct {
IP net.IP `json:"ip"`
Port uint16 `json:"port"`
Protocol string `json:"protocol"`
Hostname string `json:"hostname"` // Privado for tls verification
// Hostname is used for IPVanish, IVPN, Privado
// and Windscribe for TLS verification
Hostname string `json:"hostname"`
}
func (o *OpenVPNConnection) Equal(other OpenVPNConnection) bool {