blob: 9bd66f3bb80d3ce5fb0745fb837995785cf207e6 (
plain)
1
2
3
4
5
6
7
8
9
|
//! Linux and Android-specific networking functionality.
#![doc(cfg(any(target_os = "linux", target_os = "android")))]
#[unstable(feature = "tcp_quickack", issue = "96256")]
pub(crate) mod tcp;
#[cfg(test)]
mod tests;
|