Skip to content

Commit 821d36f

Browse files
committed
Merge branch 'openvpn-servers-used-by-relay-selector-droid-565'
2 parents 6f78939 + 5bc23d3 commit 821d36f

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ Line wrap the file at 100 chars. Th
4747
#### Linux
4848
- Prevent fragmentation when multihop is enabled by setting a default route MTU.
4949

50+
#### Android
51+
- Fix issue with the app under some circumstances trying to connect to OpenVPN relays.
5052

5153
## [2023.6] - 2023-12-06
5254
### Changed

mullvad-relay-selector/src/lib.rs

+11
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,7 @@ impl RelaySelector {
331331

332332
/// Returns a random relay and relay endpoint matching the given constraints and with
333333
/// preferences applied.
334+
#[cfg_attr(target_os = "android", allow(unused_variables))]
334335
fn get_tunnel_endpoint(
335336
&self,
336337
relay_constraints: &RelayConstraints,
@@ -339,6 +340,12 @@ impl RelaySelector {
339340
default_tunnel_type: TunnelType,
340341
custom_lists: &CustomListsSettings,
341342
) -> Result<NormalSelectedRelay, Error> {
343+
#[cfg(target_os = "android")]
344+
{
345+
self.get_wireguard_endpoint(relay_constraints, retry_attempt, custom_lists)
346+
}
347+
348+
#[cfg(not(target_os = "android"))]
342349
match relay_constraints.tunnel_protocol {
343350
Constraint::Only(TunnelType::OpenVpn) => self.get_openvpn_endpoint(
344351
relay_constraints,
@@ -402,6 +409,7 @@ impl RelaySelector {
402409

403410
/// Returns an OpenVpn endpoint, should only ever be used when the user has specified the tunnel
404411
/// protocol as only OpenVPN.
412+
#[cfg_attr(target_os = "android", allow(dead_code))]
405413
fn get_openvpn_endpoint(
406414
&self,
407415
relay_constraints: &RelayConstraints,
@@ -585,6 +593,7 @@ impl RelaySelector {
585593
}
586594

587595
/// Like [Self::get_tunnel_endpoint_internal] but also selects an entry endpoint if applicable.
596+
#[cfg_attr(target_os = "android", allow(dead_code))]
588597
fn get_multihop_tunnel_endpoint_internal(
589598
&self,
590599
relay_constraints: &RelayConstraints,
@@ -674,6 +683,7 @@ impl RelaySelector {
674683

675684
/// Returns a tunnel endpoint of any type, should only be used when the user hasn't specified a
676685
/// tunnel protocol.
686+
#[cfg_attr(target_os = "android", allow(dead_code))]
677687
fn get_any_tunnel_endpoint(
678688
&self,
679689
relay_constraints: &RelayConstraints,
@@ -719,6 +729,7 @@ impl RelaySelector {
719729
}
720730

721731
// This function ignores the tunnel type constraint on purpose.
732+
#[cfg_attr(target_os = "android", allow(dead_code))]
722733
fn preferred_constraints(
723734
&self,
724735
original_constraints: &RelayConstraints,

0 commit comments

Comments
 (0)