From ee54defe8f62621e7d57b06cfe33b26e5d9c64c4 Mon Sep 17 00:00:00 2001 From: Brendan Long Date: Mon, 22 Jul 2019 18:30:25 -0400 Subject: [PATCH] Expose verify_mode in Conduit_async Previously the verify_mode was private, which made it impossible to turn on certificate verification. --- async/v2_real.mli | 1 + async/v3_real.mli | 1 + 2 files changed, 2 insertions(+) diff --git a/async/v2_real.mli b/async/v2_real.mli index 80fb7467..edd941ba 100644 --- a/async/v2_real.mli +++ b/async/v2_real.mli @@ -4,5 +4,6 @@ include S.V2 and type ssl_version = Ssl.Version.t and type ssl_conn = Ssl.Connection.t and type ssl_opt = Ssl.Opt.t + and type verify_mode = Ssl.Verify_mode.t and type allowed_ciphers = [ `Only of string list | `Openssl_default | `Secure ] diff --git a/async/v3_real.mli b/async/v3_real.mli index 5cb4084c..afd4eeb0 100644 --- a/async/v3_real.mli +++ b/async/v3_real.mli @@ -4,5 +4,6 @@ include S.V3 and type ssl_version = Ssl.Version.t and type ssl_conn = Ssl.Connection.t and type ssl_opt = Ssl.Opt.t + and type verify_mode = Ssl.Verify_mode.t and type allowed_ciphers = [ `Only of string list | `Openssl_default | `Secure ]