type t = {version : Async_ssl.Std.Ssl.Version.t option; |
options : Async_ssl.Std.Ssl.Opt.t list option; |
name : string option; |
ca_file : string option; |
ca_path : string option; |
mode : [ `Required | `Always_try | `If_available ]; |
certificate_mode : [ `Ignore | `Verify ]; |
}include sig ... endval certificate_mode : t ‑> [ `Ignore | `Verify ]val mode : t ‑> [ `Required | `Always_try | `If_available ]val ca_path : t ‑> string optionval ca_file : t ‑> string optionval 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 : Sexplib.Sexp.t ‑> tval sexp_of_t : t ‑> Sexplib.Sexp.tval default : t