Struct yamux::Config [−][src]
pub struct Config { /* fields omitted */ }
Yamux configuration.
The default configuration values are as follows:
- receive window = 256 KiB
- max. buffer size (per stream) = 1 MiB
- max. number of streams = 8192
- window update mode = on receive
- read after close = true
Implementations
impl Config
[src]
impl Config
[src]pub fn set_receive_window(&mut self, n: u32) -> &mut Self
[src]
Set the receive window per stream (must be >= 256 KiB).
Panics
If the given receive window is < 256 KiB.
pub fn set_max_buffer_size(&mut self, n: usize) -> &mut Self
[src]
Set the max. buffer size per stream.
pub fn set_max_num_streams(&mut self, n: usize) -> &mut Self
[src]
Set the max. number of streams.
pub fn set_window_update_mode(&mut self, m: WindowUpdateMode) -> &mut Self
[src]
Set the window update mode to use.
pub fn set_read_after_close(&mut self, b: bool) -> &mut Self
[src]
Allow or disallow streams to read from buffered data after the connection has been closed.