net-mux 0.2.4

A Net Stream Multiplexing Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub struct Config {
    pub frame_window_size: usize,
}

impl Default for Config {
    fn default() -> Self {
        Self {
            frame_window_size: 1024,
        }
    }
}