pub trait TlsClientConnectionExt: 'static {
    fn copy_session_state(&self, source: &impl IsA<TlsClientConnection>);
    fn accepted_cas(&self) -> Vec<ByteArray>;
    fn server_identity(&self) -> Option<SocketConnectable>;
    fn uses_ssl3(&self) -> bool;
    fn validation_flags(&self) -> TlsCertificateFlags;
    fn set_server_identity(&self, identity: &impl IsA<SocketConnectable>);
    fn set_use_ssl3(&self, use_ssl3: bool);
    fn set_validation_flags(&self, flags: TlsCertificateFlags);
    fn connect_accepted_cas_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_server_identity_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_use_ssl3_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_validation_flags_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

👎 Deprecated:

Since 2.56

👎 Deprecated:

Since 2.56

👎 Deprecated:

Since 2.56

Implementors