Home
last modified time | relevance | path

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

/webrtc/sctp/src/chunk/
H A Dchunk_type.rs20 pub(crate) const CT_COOKIE_ACK: ChunkType = ChunkType(11); constant
42 CT_COOKIE_ACK => "COOKIE-ACK", in fmt()
72 (CT_COOKIE_ACK, "COOKIE-ACK"), in test_chunk_type_string()
H A Dchunk_cookie_ack.rs26 typ: CT_COOKIE_ACK, in header()
35 if header.typ != CT_COOKIE_ACK { in unmarshal()
H A Dchunk_test.rs22 (CT_COOKIE_ACK, "COOKIE-ACK"), in test_chunk_type_string()
/webrtc/sctp/src/
H A Dpacket.rs122 CT_COOKIE_ACK => Box::new(ChunkCookieAck::unmarshal(&raw.slice(offset..))?), in unmarshal()