Module rustls_ffi::client

source ·

Structs

A client config that is done being constructed and is now read-only. Under the hood, this object corresponds to an Arc<ClientConfig>. https://docs.rs/rustls/0.20.0/rustls/struct.ClientConfig.html
A client config being constructed. A builder can be modified by, e.g. rustls_client_config_builder_load_roots_from_file. Once you’re done configuring settings, call rustls_client_config_builder_build to turn it into a *rustls_client_config. This object is not safe for concurrent mutation. Under the hood, it corresponds to a Box<ClientConfig>. https://docs.rs/rustls/0.20.0/rustls/struct.ConfigBuilder.html
Input to a custom certificate verifier callback. See rustls_client_config_builder_dangerous_set_certificate_verifier().

Type Definitions

User-provided input to a custom certificate verifier callback. See rustls_client_config_builder_dangerous_set_certificate_verifier().