Home
last modified time | relevance | path

Searched refs:MaxSegmentSize (Results 1 – 1 of 1) sorted by relevance

/smoltcp-0.9.1/src/wire/
Dtcp.rs599 MaxSegmentSize(u16), enumerator
624 option = TcpOption::MaxSegmentSize(NetworkEndian::read_u16(data)) in parse()
677 TcpOption::MaxSegmentSize(_) => 4, in buffer_len()
704 &TcpOption::MaxSegmentSize(value) => { in emit()
839 TcpOption::MaxSegmentSize(value) => max_seg_size = Some(value), in parse()
943 options = TcpOption::MaxSegmentSize(value).emit(tmp); in emit()
1032 TcpOption::MaxSegmentSize(value) => write!(f, " mss={value}")?, in fmt()
1242 assert_option_parses!(TcpOption::MaxSegmentSize(1500), &[0x02, 0x04, 0x05, 0xdc]); in test_tcp_options()