1 | //! Linux and Android-specific networking functionality. |
---|---|
2 | |
3 | #![doc(cfg(any(target_os = "linux", target_os = "android")))] |
4 | |
5 | #[stable(feature = "unix_socket_abstract", since = "1.70.0")] |
6 | pub(crate) mod addr; |
7 | |
8 | #[unstable(feature = "unix_socket_ancillary_data", issue = "76915")] |
9 | pub(crate) mod socket; |
10 | |
11 | #[unstable(feature = "tcp_quickack", issue = "96256")] |
12 | pub(crate) mod tcp; |
13 | |
14 | #[cfg(test)] |
15 | mod tests; |
16 |