diff options
| author | David Lönnhager <david.l@mullvad.net> | 2026-03-31 13:45:35 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2026-03-31 13:45:35 +0200 |
| commit | ec73d024a70398e395680e4d2f353f070f43d131 (patch) | |
| tree | a538f9138a25fc59d3345085a92c947261688913 | |
| parent | 16172c9f2fad3efd737e1f92c1d98572a9221dc7 (diff) | |
| download | mullvadvpn-remove-wireguard-go.tar.xz mullvadvpn-remove-wireguard-go.zip | |
fixup: log path on androidremove-wireguard-go
| -rw-r--r-- | talpid-wireguard/src/lib.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/talpid-wireguard/src/lib.rs b/talpid-wireguard/src/lib.rs index a60927df08..76c532487a 100644 --- a/talpid-wireguard/src/lib.rs +++ b/talpid-wireguard/src/lib.rs @@ -404,7 +404,11 @@ impl WireguardMonitor { /// being ready to serve traffic. /// - No routes are configured on android. #[cfg(target_os = "android")] - pub fn start(params: &TunnelParameters, args: TunnelArgs<'_>) -> Result<WireguardMonitor> { + pub fn start( + params: &TunnelParameters, + args: TunnelArgs<'_>, + _log_path: Option<&Path>, + ) -> Result<WireguardMonitor> { let route_mtu = args .runtime .block_on(get_route_mtu(params, &args.route_manager)); |
