Home
last modified time | relevance | path

Searched defs:cookie (Results 1 – 8 of 8) sorted by relevance

/webrtc/sctp/src/param/
H A Dparam_state_cookie.rs9 pub(crate) cookie: Bytes, field
29 let cookie = raw.slice(PARAM_HEADER_LENGTH..PARAM_HEADER_LENGTH + header.value_length()); in unmarshal() localVariable
54 let mut cookie = BytesMut::new(); in new() localVariable
/webrtc/dtls/src/handshake/
H A Dhandshake_message_hello_verify_request.rs30 pub(crate) cookie: Vec<u8>, field
59 let mut cookie = vec![]; in unmarshal() localVariable
H A Dhandshake_message_client_hello.rs26 pub(crate) cookie: Vec<u8>, field
148 let mut cookie = vec![0; cookie_len]; in unmarshal() localVariable
/webrtc/sctp/src/chunk/
H A Dchunk_cookie_echo.rs18 pub(crate) cookie: Bytes, field
44 let cookie = raw.slice(CHUNK_HEADER_SIZE..CHUNK_HEADER_SIZE + header.value_length()); in unmarshal() localVariable
H A Dchunk_test.rs601 let cookie = Box::new(ParamStateCookie::new()); in test_init_marshal_unmarshal() localVariable
/webrtc/dtls/src/conn/
H A Dconn_test.rs1793 let mut cookie = vec![0u8; 20]; in test_server_timeout() localVariable
1951 let mut cookie = vec![0; 20]; in test_protocol_version_validation() localVariable
2266 let mut cookie = vec![0; 20]; in test_multiple_hello_verify_request() localVariable
2302 let cookie = &cookies[i]; in test_multiple_hello_verify_request() localVariable
/webrtc/dtls/src/
H A Dstate.rs40 pub(crate) cookie: Vec<u8>, field
/webrtc/stun/src/
H A Dmessage.rs281 let cookie = u32::from_be_bytes([buf[4], buf[5], buf[6], buf[7]]); // last 4 bytes in decode() localVariable