diff options
| author | David Lönnhager <david.l@mullvad.net> | 2025-05-02 14:34:51 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2025-05-02 16:40:02 +0200 |
| commit | 333851f8bfa658b75c02ee46e675a5c0bf1f33e4 (patch) | |
| tree | 7fbb5f0ba248a19dd79d7d78f8f4197620c1a214 | |
| parent | 811b0bb7bf208178691067ef6c03a68a51cdd843 (diff) | |
| download | mullvadvpn-333851f8bfa658b75c02ee46e675a5c0bf1f33e4.tar.xz mullvadvpn-333851f8bfa658b75c02ee46e675a5c0bf1f33e4.zip | |
Add unimplemented function on Android
| -rw-r--r-- | tunnel-obfuscation/src/quic.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tunnel-obfuscation/src/quic.rs b/tunnel-obfuscation/src/quic.rs index db794b4394..758e65af44 100644 --- a/tunnel-obfuscation/src/quic.rs +++ b/tunnel-obfuscation/src/quic.rs @@ -75,4 +75,9 @@ impl Obfuscator for Quic { fn packet_overhead(&self) -> u16 { 0 // FIXME } + + #[cfg(target_os = "android")] + fn remote_socket_fd(&self) -> std::os::unix::io::RawFd { + unimplemented!() + } } |
