search for: 5d129a0

Displaying 1 result from an estimated 1 matches for "5d129a0".

Did you mean: 511290
2019 Jun 05
1
[libnbd PATCH] api: Add nbd_supports_tls
...tls which is required +to support TLS encryption, or false if not. See C<nbd_set_tls>."; + }; + "supports_uri", { default_call with args = []; ret = RBool; is_locked = false; may_set_error = false; diff --git a/interop/interop.c b/interop/interop.c index 24f79cc..5d129a0 100644 --- a/interop/interop.c +++ b/interop/interop.c @@ -71,6 +71,10 @@ main (int argc, char *argv[]) /* Require TLS on the handle and fail if not available or if the * handshake fails. */ + if (nbd_supports_tls (nbd) != 1) { + fprintf (stderr, "skip: compiled without TLS supp...