Home
last modified time | relevance | path

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

/webrtc/sctp/src/chunk/
H A Dchunk_type.rs18 pub(crate) const CT_ERROR: ChunkType = ChunkType(9); constant
40 CT_ERROR => "ERROR", in fmt()
70 (CT_ERROR, "ERROR"), in test_chunk_type_string()
H A Dchunk_error.rs49 typ: CT_ERROR, in header()
58 if header.typ != CT_ERROR { in unmarshal()
H A Dchunk_test.rs20 (CT_ERROR, "ERROR"), in test_chunk_type_string()
117 raw.put_u8(CT_ERROR.0);
128 assert_eq!(c.header().typ, CT_ERROR, "chunk type should be ERROR"); in test_chunk_error_unrecognized_chunk_type_unmarshal()
165 Bytes::from_static(&[CT_ERROR.0, CHUNK_FLAGS, 0x00, 0x08, 0x00, 0x06, 0x00, 0x04]); in test_chunk_error_unrecognized_chunk_type_marshal_with_cause_value_being_nil()
/webrtc/sctp/src/
H A Dpacket.rs128 CT_ERROR => Box::new(ChunkError::unmarshal(&raw.slice(offset..))?), in unmarshal()