diff --git a/internal/constants/ivpn.go b/internal/constants/ivpn.go index 8f605caa..079bad05 100644 --- a/internal/constants/ivpn.go +++ b/internal/constants/ivpn.go @@ -47,6 +47,7 @@ func IvpnServers() []models.IvpnServer { {Country: "Austria", City: "", Hostname: "at.gw.ivpn.net", TCP: false, UDP: true, IPs: []net.IP{{185, 244, 212, 66}}}, {Country: "Belgium", City: "", Hostname: "be.gw.ivpn.net", TCP: false, UDP: true, IPs: []net.IP{{194, 187, 251, 10}}}, {Country: "Brazil", City: "", Hostname: "br.gw.ivpn.net", TCP: false, UDP: true, IPs: []net.IP{{45, 162, 229, 130}}}, + {Country: "Bulgaria", City: "", Hostname: "bg.gw.ivpn.net", TCP: false, UDP: true, IPs: []net.IP{{82, 102, 23, 18}}}, {Country: "Canada", City: "Montreal", Hostname: "ca-qc.gw.ivpn.net", TCP: false, UDP: true, IPs: []net.IP{{87, 101, 92, 26}}}, {Country: "Canada", City: "Toronto", Hostname: "ca.gw.ivpn.net", TCP: false, UDP: true, IPs: []net.IP{{104, 254, 90, 178}}}, {Country: "Czech Republic", City: "", Hostname: "cz.gw.ivpn.net", TCP: false, UDP: true, IPs: []net.IP{{195, 181, 160, 167}}}, @@ -69,6 +70,7 @@ func IvpnServers() []models.IvpnServer { {Country: "Serbia", City: "", Hostname: "rs.gw.ivpn.net", TCP: false, UDP: true, IPs: []net.IP{{141, 98, 103, 250}}}, {Country: "Singapore", City: "", Hostname: "sg.gw.ivpn.net", TCP: false, UDP: true, IPs: []net.IP{{185, 128, 24, 186}}}, {Country: "Slovakia", City: "", Hostname: "sk.gw.ivpn.net", TCP: false, UDP: true, IPs: []net.IP{{185, 245, 85, 250}}}, + {Country: "Spain", City: "", Hostname: "es.gw.ivpn.net", TCP: false, UDP: true, IPs: []net.IP{{185, 93, 3, 193}}}, {Country: "Sweden", City: "", Hostname: "se.gw.ivpn.net", TCP: false, UDP: true, IPs: []net.IP{{80, 67, 10, 138}}}, {Country: "Switzerland", City: "", Hostname: "ch.gw.ivpn.net", TCP: false, UDP: true, IPs: []net.IP{{185, 212, 170, 138}}}, {Country: "USA", City: "Atlanta", Hostname: "us-ga.gw.ivpn.net", TCP: false, UDP: true, IPs: []net.IP{{104, 129, 24, 146}}}, diff --git a/internal/constants/servers.go b/internal/constants/servers.go index 6c81f185..970eca2e 100644 --- a/internal/constants/servers.go +++ b/internal/constants/servers.go @@ -23,7 +23,7 @@ func GetAllServers() (allServers models.AllServers) { }, Ivpn: models.IvpnServers{ Version: 1, - Timestamp: 1622421364, + Timestamp: 1624120443, Servers: IvpnServers(), }, Mullvad: models.MullvadServers{ diff --git a/internal/constants/servers_test.go b/internal/constants/servers_test.go index b91de6e3..9339aecd 100644 --- a/internal/constants/servers_test.go +++ b/internal/constants/servers_test.go @@ -165,7 +165,7 @@ func Test_timestamps(t *testing.T) { "Ivpn": { servers: allServers.Ivpn.Servers, timestamp: allServers.Ivpn.Timestamp, - digest: "158630c0", + digest: "42f92754", }, "Mullvad": { servers: allServers.Mullvad.Servers,