Home
last modified time | relevance | path

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

/webrtc/sctp/src/chunk/
H A Dchunk_type.rs16 pub(crate) const CT_SHUTDOWN: ChunkType = ChunkType(7); constant
38 CT_SHUTDOWN => "SHUTDOWN", in fmt()
68 (CT_SHUTDOWN, "SHUTDOWN"), in test_chunk_type_string()
H A Dchunk_shutdown.rs32 typ: CT_SHUTDOWN, in header()
41 if header.typ != CT_SHUTDOWN { in unmarshal()
H A Dchunk_test.rs18 (CT_SHUTDOWN, "SHUTDOWN"), in test_chunk_type_string()
/webrtc/sctp/src/
H A Dpacket.rs129 CT_SHUTDOWN => Box::new(ChunkShutdown::unmarshal(&raw.slice(offset..))?), in unmarshal()