Home
last modified time | relevance | path

Searched refs:ClientHello (Results 1 – 13 of 13) sorted by relevance

/webrtc/dtls/src/handshake/
H A Dmod.rs40 ClientHello = 1, enumerator
58 HandshakeType::ClientHello => write!(f, "ClientHello"), in fmt()
77 1 => HandshakeType::ClientHello, in from()
95 ClientHello(HandshakeMessageClientHello), enumerator
110 HandshakeMessage::ClientHello(msg) => msg.handshake_type(), in handshake_type()
125 HandshakeMessage::ClientHello(msg) => msg.size(), in size()
140 HandshakeMessage::ClientHello(msg) => msg.marshal(writer)?, in marshal()
200 HandshakeType::ClientHello => { in unmarshal()
201 HandshakeMessage::ClientHello(HandshakeMessageClientHello::unmarshal(reader)?) in unmarshal()
H A Dhandshake_test.rs21 handshake_type: HandshakeType::ClientHello, in test_handshake_message()
27 handshake_message: HandshakeMessage::ClientHello(HandshakeMessageClientHello { in test_handshake_message()
H A Dhandshake_message_client_hello.rs77 HandshakeType::ClientHello in handshake_type()
H A Dhandshake_cache.rs177 typ: HandshakeType::ClientHello, in session_hash()
/webrtc/dtls/src/flight/
H A Dflight2.rs39 typ: HandshakeType::ClientHello, in parse()
57 if let Some(message) = msgs.get(&HandshakeType::ClientHello) { in parse()
60 HandshakeMessage::ClientHello(client_hello) => client_hello, in parse()
H A Dflight0.rs38 typ: HandshakeType::ClientHello, in parse()
52 if let Some(message) = msgs.get(&HandshakeType::ClientHello) { in parse()
55 HandshakeMessage::ClientHello(client_hello) => client_hello, in parse()
H A Dflight6.rs90 typ: HandshakeType::ClientHello, in generate()
H A Dflight1.rs176 Content::Handshake(Handshake::new(HandshakeMessage::ClientHello( in generate()
H A Dflight5.rs78 typ: HandshakeType::ClientHello, in parse()
350 typ: HandshakeType::ClientHello, in generate()
499 typ: HandshakeType::ClientHello, in generate()
H A Dflight3.rs396 Content::Handshake(Handshake::new(HandshakeMessage::ClientHello( in generate()
H A Dflight4.rs144 typ: HandshakeType::ClientHello, in parse()
/webrtc/dtls/src/handshake/handshake_cache/
H A Dhandshake_cache_test.rs345 typ: HandshakeType::ClientHello, in test_handshake_cache_session_hash()
397 typ: HandshakeType::ClientHello, in test_handshake_cache_session_hash()
456 typ: HandshakeType::ClientHello, in test_handshake_cache_session_hash()
536 typ: HandshakeType::ClientHello, in test_handshake_cache_session_hash()
/webrtc/dtls/src/conn/
H A Dconn_test.rs262 Content::Handshake(Handshake::new(HandshakeMessage::ClientHello( in test_sequence_number_overflow_on_handshake()
1850 Content::Handshake(Handshake::new(HandshakeMessage::ClientHello( in test_server_timeout()
1973 Content::Handshake(Handshake::new(HandshakeMessage::ClientHello( in test_protocol_version_validation()
1996 Content::Handshake(Handshake::new(HandshakeMessage::ClientHello( in test_protocol_version_validation()
2010 let mut handshake = Handshake::new(HandshakeMessage::ClientHello( in test_protocol_version_validation()
2312 HandshakeMessage::ClientHello(client_hello) => { in test_multiple_hello_verify_request()
2347 let mut h = Handshake::new(HandshakeMessage::ClientHello(HandshakeMessageClientHello { in send_client_hello()