mptcp/sys/
mod.rs

1#[cfg(target_os = "linux")]
2mod linux;
3
4#[cfg(target_os = "linux")]
5pub use linux::*;
6
7#[cfg(any(target_os = "macos", target_os = "ios"))]
8mod darwin;
9
10#[cfg(any(target_os = "macos", target_os = "ios"))]
11pub use darwin::*;
12
13#[cfg(not(any(target_os = "macos", target_os = "ios", target_os = "linux")))]
14mod other;
15
16#[cfg(not(any(target_os = "macos", target_os = "ios", target_os = "linux")))]
17pub use other::*;