Home
last modified time | relevance | path

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

/webrtc/sctp/src/chunk/
H A Dchunk_error.rs29 pub(crate) struct ChunkError { struct
34 impl fmt::Display for ChunkError { implementation
46 impl Chunk for ChunkError { implementation
72 Ok(ChunkError { error_causes }) in unmarshal()
H A Dchunk_test.rs127 let c = ChunkError::unmarshal(&RAW_IN)?; in test_chunk_error_unrecognized_chunk_type_unmarshal()
152 let ec = ChunkError { in test_chunk_error_unrecognized_chunk_type_marshal()
171 let ec = ChunkError { in test_chunk_error_unrecognized_chunk_type_marshal_with_cause_value_being_nil()
/webrtc/sctp/src/
H A Dpacket.rs6 use crate::chunk::chunk_error::ChunkError;
128 CT_ERROR => Box::new(ChunkError::unmarshal(&raw.slice(offset..))?), in unmarshal()
/webrtc/sctp/src/association/
H A Dassociation_internal.rs1645 let cerr = ChunkError { in handle_forward_tsn()
2110 || chunk_any.downcast_ref::<ChunkError>().is_some() in handle_chunk()
2158 let err_chunk = ChunkError { in handle_chunk()
2180 let err_chunk = ChunkError { in handle_chunk()
H A Dmod.rs10 use crate::chunk::chunk_error::ChunkError;
H A Dassociation_test.rs2565 chunks: vec![Box::<ChunkError>::default()], in test_association_handle_packet_before_init()