type t = {version : Async_ssl.Std.Ssl.Version.t option; |
options : Async_ssl.Std.Ssl.Opt.t list option; |
name : string option; |
allowed_ciphers : [ `Secure | `Openssl_default | `Only of string list ]; |
crt_file : string; |
key_file : string; |
ca_file : string option; |
ca_path : string option; |
}include sig ... endval ca_path : t ‑> string optionval ca_file : t ‑> string optionval key_file : t ‑> stringval crt_file : t ‑> stringval allowed_ciphers : t ‑> [ `Secure | `Openssl_default | `Only of string list ]val name : t ‑> string optionval options : t ‑> Async_ssl.Std.Ssl.Opt.t list optionval version : t ‑> Async_ssl.Std.Ssl.Version.t optionmodule Fields : sig ... endval t_of_sexp : Base.Sexp.t ‑> tval sexp_of_t : t ‑> Base.Sexp.t