Home
last modified time | relevance | path

Searched refs:handshake_type (Results 1 – 14 of 14) sorted by relevance

/webrtc/dtls/src/handshake/
H A Dmod.rs108 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() method
110 HandshakeMessage::ClientHello(msg) => msg.handshake_type(), in handshake_type()
111 HandshakeMessage::ServerHello(msg) => msg.handshake_type(), in handshake_type()
113 HandshakeMessage::Certificate(msg) => msg.handshake_type(), in handshake_type()
114 HandshakeMessage::ServerKeyExchange(msg) => msg.handshake_type(), in handshake_type()
116 HandshakeMessage::ServerHelloDone(msg) => msg.handshake_type(), in handshake_type()
117 HandshakeMessage::CertificateVerify(msg) => msg.handshake_type(), in handshake_type()
118 HandshakeMessage::ClientKeyExchange(msg) => msg.handshake_type(), in handshake_type()
119 HandshakeMessage::Finished(msg) => msg.handshake_type(), in handshake_type()
172 handshake_type: handshake_message.handshake_type(), in new()
[all …]
H A Dhandshake_header.rs12 pub(crate) handshake_type: HandshakeType, field
25 writer.write_u8(self.handshake_type as u8)?; in marshal()
35 let handshake_type = reader.read_u8()?.into(); in unmarshal() localVariable
42 handshake_type, in unmarshal()
H A Dhandshake_message_server_hello_done.rs12 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() method
H A Dhandshake_message_finished.rs14 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() method
H A Dhandshake_test.rs21 handshake_type: HandshakeType::ClientHello, in test_handshake_message()
H A Dhandshake_message_certificate_verify.rs19 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() method
H A Dhandshake_message_hello_verify_request.rs34 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() method
H A Dhandshake_message_certificate.rs17 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() method
H A Dhandshake_message_client_key_exchange.rs16 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() method
H A Dhandshake_message_certificate_request.rs27 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() method
H A Dhandshake_message_server_hello.rs55 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() method
H A Dhandshake_message_server_key_exchange.rs25 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() method
H A Dhandshake_message_client_hello.rs76 pub fn handshake_type(&self) -> HandshakeType { in handshake_type() method
/webrtc/dtls/src/conn/
H A Dmod.rs543 h.handshake_header.handshake_type.to_string(), in handle_outgoing_packets()
552 h.handshake_header.handshake_type, in handle_outgoing_packets()
711 handshake_type: h.handshake_header.handshake_type, in fragment_handshake()
996 rh.handshake_header.handshake_type.to_string(), in handle_incoming_packet()
1017 raw_handshake.handshake_header.handshake_type, in handle_incoming_packet()