@@ -331,6 +331,7 @@ impl RelaySelector {
331
331
332
332
/// Returns a random relay and relay endpoint matching the given constraints and with
333
333
/// preferences applied.
334
+ #[ cfg_attr( target_os = "android" , allow( unused_variables) ) ]
334
335
fn get_tunnel_endpoint (
335
336
& self ,
336
337
relay_constraints : & RelayConstraints ,
@@ -339,6 +340,12 @@ impl RelaySelector {
339
340
default_tunnel_type : TunnelType ,
340
341
custom_lists : & CustomListsSettings ,
341
342
) -> 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" ) ) ]
342
349
match relay_constraints. tunnel_protocol {
343
350
Constraint :: Only ( TunnelType :: OpenVpn ) => self . get_openvpn_endpoint (
344
351
relay_constraints,
@@ -402,6 +409,7 @@ impl RelaySelector {
402
409
403
410
/// Returns an OpenVpn endpoint, should only ever be used when the user has specified the tunnel
404
411
/// protocol as only OpenVPN.
412
+ #[ cfg_attr( target_os = "android" , allow( dead_code) ) ]
405
413
fn get_openvpn_endpoint (
406
414
& self ,
407
415
relay_constraints : & RelayConstraints ,
@@ -585,6 +593,7 @@ impl RelaySelector {
585
593
}
586
594
587
595
/// Like [Self::get_tunnel_endpoint_internal] but also selects an entry endpoint if applicable.
596
+ #[ cfg_attr( target_os = "android" , allow( dead_code) ) ]
588
597
fn get_multihop_tunnel_endpoint_internal (
589
598
& self ,
590
599
relay_constraints : & RelayConstraints ,
@@ -674,6 +683,7 @@ impl RelaySelector {
674
683
675
684
/// Returns a tunnel endpoint of any type, should only be used when the user hasn't specified a
676
685
/// tunnel protocol.
686
+ #[ cfg_attr( target_os = "android" , allow( dead_code) ) ]
677
687
fn get_any_tunnel_endpoint (
678
688
& self ,
679
689
relay_constraints : & RelayConstraints ,
@@ -719,6 +729,7 @@ impl RelaySelector {
719
729
}
720
730
721
731
// This function ignores the tunnel type constraint on purpose.
732
+ #[ cfg_attr( target_os = "android" , allow( dead_code) ) ]
722
733
fn preferred_constraints (
723
734
& self ,
724
735
original_constraints : & RelayConstraints ,
0 commit comments