Home
last modified time | relevance | path

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

/webrtc/sctp/src/chunk/
H A Dchunk_type.rs10 pub(crate) const CT_INIT: ChunkType = ChunkType(1); constant
32 CT_INIT => "INIT", in fmt()
62 (CT_INIT, "INIT"), in test_chunk_type_string()
H A Dchunk_init.rs122 typ: if self.is_ack { CT_INIT_ACK } else { CT_INIT }, in header()
147 if !(header.typ == CT_INIT || header.typ == CT_INIT_ACK) { in unmarshal()
H A Dchunk_test.rs12 (CT_INIT, "INIT"), in test_chunk_type_string()
/webrtc/sctp/src/
H A Dpacket.rs118 CT_INIT => Box::new(ChunkInit::unmarshal(&raw.slice(offset..))?), in unmarshal()