Lines Matching refs:Handshake
139 pub fn new_handshake(&mut self) -> Result<Handshake> { in new_handshake() argument
142 Ok(Handshake(ssl)) in new_handshake()
300 pub struct Handshake(*mut SSL); struct
302 impl Handshake { implementation
303 pub unsafe fn from_ptr(ssl: *mut c_void) -> Handshake { in from_ptr() argument
305 Handshake(ssl) in from_ptr()
528 unsafe impl std::marker::Send for Handshake {} implementation
530 impl Drop for Handshake { implementation
573 crypto::Level::Handshake => in set_read_secret()
623 crypto::Level::Handshake => in set_write_secret()
673 crypto::Level::Handshake => in add_handshake_data()
803 fn map_result_ssl(ssl: &Handshake, bssl_result: c_int) -> Result<()> { in map_result_ssl() argument