Home
last modified time | relevance | path

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

/webrtc/sctp/src/chunk/
H A Dchunk_type.rs24 pub(crate) const CT_RECONFIG: ChunkType = ChunkType(130); constant
46 CT_RECONFIG => "RECONFIG", // Re-configuration in fmt()
76 (CT_RECONFIG, "RECONFIG"), in test_chunk_type_string()
H A Dchunk_reconfig.rs56 typ: CT_RECONFIG, in header()
65 if header.typ != CT_RECONFIG { in unmarshal()
H A Dchunk_init.rs297 chunk_types: vec![CT_RECONFIG, CT_FORWARD_TSN], in set_supported_extensions()
H A Dchunk_test.rs26 (CT_RECONFIG, "RECONFIG"), in test_chunk_type_string()
/webrtc/sctp/src/
H A Dpacket.rs126 CT_RECONFIG => Box::new(ChunkReconfig::unmarshal(&raw.slice(offset..))?), in unmarshal()