Home
last modified time | relevance | path

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

/webrtc/dtls/src/flight/
H A Dflight2.rs59 let client_hello = match message { in parse() localVariable
60 HandshakeMessage::ClientHello(client_hello) => client_hello, in parse()
72 if client_hello.version != PROTOCOL_VERSION1_2 { in parse()
82 if client_hello.cookie.is_empty() { in parse()
86 if state.cookie != client_hello.cookie { in parse()
H A Dflight0.rs54 let client_hello = match message { in parse() localVariable
55 HandshakeMessage::ClientHello(client_hello) => client_hello, in parse()
67 if client_hello.version != PROTOCOL_VERSION1_2 { in parse()
77 state.remote_random = client_hello.random.clone(); in parse()
80 find_matching_cipher_suite(&client_hello.cipher_suites, &cfg.local_cipher_suites) in parse()
101 for extension in &client_hello.extensions { in parse()
/webrtc/dtls/src/prf/
H A Dprf_test.rs129 let client_hello = vec![ in test_verify_data() localVariable
235 final_msg.extend_from_slice(&client_hello); in test_verify_data()
/webrtc/dtls/src/conn/
H A Dconn_test.rs2312 HandshakeMessage::ClientHello(client_hello) => { in test_multiple_hello_verify_request()
2314 &client_hello.cookie, cookie, in test_multiple_hello_verify_request()
2316 i, &client_hello.cookie, cookie in test_multiple_hello_verify_request()