Skip to content

Commit 1198361

Browse files
committed
Remove additional Shadowsocks addresses when overrides are present
1 parent 283d94d commit 1198361

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

mullvad-types/src/relay_constraints.rs

+12-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use crate::{
55
constraints::{Constraint, Match},
66
custom_list::{CustomListsSettings, Id},
77
location::{CityCode, CountryCode, Hostname},
8-
relay_list::Relay,
8+
relay_list::{Relay, RelayEndpointData},
99
CustomTunnelEndpoint, Intersection,
1010
};
1111
use serde::{Deserialize, Serialize};
@@ -667,5 +667,16 @@ impl RelayOverride {
667667
);
668668
relay.ipv6_addr_in = Some(ipv6_addr_in);
669669
}
670+
671+
// Additional IPs should be ignored when overrides are present
672+
if let RelayEndpointData::Wireguard(data) = &mut relay.endpoint_data {
673+
data.shadowsocks_extra_addr_in.retain(|addr| {
674+
let not_overridden_v4 = self.ipv4_addr_in.is_none() && addr.is_ipv4();
675+
let not_overridden_v6 = self.ipv6_addr_in.is_none() && addr.is_ipv6();
676+
677+
// Keep address if it's not overridden
678+
not_overridden_v4 || not_overridden_v6
679+
});
680+
}
670681
}
671682
}

0 commit comments

Comments
 (0)