lynn_tcp 2.0.0

Lightweight asynchronous TCP framework
Documentation
1
2
3
4
5
6
7
8
/// TCP socket configuration.
pub(crate) struct TcpSocketConfig {
    pub nodelay: bool,
    pub keepalive_enabled: bool,
    pub keepalive_time_secs: u64,
    pub recv_buffer_size: usize,
    pub send_buffer_size: usize,
}