Home
last modified time | relevance | path

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

/webrtc/sctp/src/chunk/
H A Dchunk_type.rs19 pub(crate) const CT_COOKIE_ECHO: ChunkType = ChunkType(10); constant
41 CT_COOKIE_ECHO => "COOKIE-ECHO", in fmt()
71 (CT_COOKIE_ECHO, "COOKIE-ECHO"), in test_chunk_type_string()
H A Dchunk_cookie_echo.rs31 typ: CT_COOKIE_ECHO, in header()
40 if header.typ != CT_COOKIE_ECHO { in unmarshal()
H A Dchunk_test.rs21 (CT_COOKIE_ECHO, "COOKIE-ECHO"), in test_chunk_type_string()
/webrtc/sctp/src/
H A Dpacket.rs121 CT_COOKIE_ECHO => Box::new(ChunkCookieEcho::unmarshal(&raw.slice(offset..))?), in unmarshal()