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