Home
last modified time | relevance | path

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

/webrtc/sctp/src/chunk/
H A Dchunk_type.rs15 pub(crate) const CT_ABORT: ChunkType = ChunkType(6); constant
37 CT_ABORT => "ABORT", in fmt()
67 (CT_ABORT, "ABORT"), in test_chunk_type_string()
H A Dchunk_abort.rs47 typ: CT_ABORT, in header()
56 if header.typ != CT_ABORT { in unmarshal()
H A Dchunk_test.rs17 (CT_ABORT, "ABORT"), in test_chunk_type_string()
/webrtc/sctp/src/
H A Dpacket.rs120 CT_ABORT => Box::new(ChunkAbort::unmarshal(&raw.slice(offset..))?), in unmarshal()