summaryrefslogtreecommitdiffhomepage
path: root/mullvad-api
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2022-11-21 14:19:10 +0100
committerAndrej Mihajlov <and@mullvad.net>2022-11-21 14:22:10 +0100
commit5eea807e483a533829fc165353cf7f9692af79a0 (patch)
treedb09ac7fc6d92fa8901250028ff215f400e4c3fa /mullvad-api
parent4116ebc192d34a6d6e2246c5c153a5fb657d3353 (diff)
downloadmullvadvpn-5eea807e483a533829fc165353cf7f9692af79a0.tar.xz
mullvadvpn-5eea807e483a533829fc165353cf7f9692af79a0.zip
Update API ip
Diffstat (limited to 'mullvad-api')
-rw-r--r--mullvad-api/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mullvad-api/src/lib.rs b/mullvad-api/src/lib.rs
index 12ca3d45e4..25a53d016c 100644
--- a/mullvad-api/src/lib.rs
+++ b/mullvad-api/src/lib.rs
@@ -82,7 +82,7 @@ impl ApiEndpoint {
/// `MULLVAD_API_ADDR` or `MULLVAD_API_HOST` has been set but not the other.
fn get() -> ApiEndpoint {
const API_HOST_DEFAULT: &str = "api.mullvad.net";
- const API_IP_DEFAULT: IpAddr = IpAddr::V4(Ipv4Addr::new(45, 83, 222, 100));
+ const API_IP_DEFAULT: IpAddr = IpAddr::V4(Ipv4Addr::new(45, 83, 223, 196));
const API_PORT_DEFAULT: u16 = 443;
fn read_var(key: &'static str) -> Option<String> {