Home
last modified time | relevance | path

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

/webrtc/sctp/src/chunk/
H A Dchunk_type.rs9 pub(crate) const CT_PAYLOAD_DATA: ChunkType = ChunkType(0); constant
31 CT_PAYLOAD_DATA => "DATA", in fmt()
61 (CT_PAYLOAD_DATA, "DATA"), in test_chunk_type_string()
H A Dchunk_payload_data.rs170 typ: CT_PAYLOAD_DATA, in header()
179 if header.typ != CT_PAYLOAD_DATA { in unmarshal()
H A Dchunk_test.rs11 (CT_PAYLOAD_DATA, "DATA"), in test_chunk_type_string()
/webrtc/sctp/src/
H A Dpacket.rs124 CT_PAYLOAD_DATA => Box::new(ChunkPayloadData::unmarshal(&raw.slice(offset..))?), in unmarshal()