chore(storage): tcp and udp fields for all servers

- Updater code sets UDP and TCP compatibility for all providers
- Increase servers.json model versions for affected providers (mullvad, windscribe, privado, protonvpn, privatevpn)
- Remove retro-compatibility server defaults
- Update all affected providers servers data (mullvad, windscribe, privado, protonvpn, privatevpn)
This commit is contained in:
Quentin McGaw
2022-04-22 21:25:00 +00:00
parent afa51b3ff6
commit e6c3cb078a
8 changed files with 6822 additions and 891 deletions

View File

@@ -19,6 +19,8 @@ func (its ipToServer) add(country, region, city, name, hostname string,
server.City = city
server.ServerName = name
server.Hostname = hostname
server.UDP = true
server.TCP = true
server.IPs = []net.IP{entryIP}
} else {
server.IPs = append(server.IPs, entryIP)