search for: get_tls_verify_peer

Displaying 3 results from an estimated 3 matches for "get_tls_verify_peer".

2019 Jun 05
1
[libnbd PATCH] api: Add nbd_supports_tls
...ificate authentication, and false otherwise."; +using TLS certificate authentication, and false otherwise. + +This function may be called regardless of whether TLS is +supported, but will have no effect unless C<nbd_set_tls> +is also used to request or require TLS."; }; "get_tls_verify_peer", { @@ -1037,7 +1047,11 @@ Get the verify peer flag."; longdesc = "\ Set the TLS client username. This is used if authenticating with PSK over TLS is enabled. -If not set then the local username is used."; +If not set then the local username is used. + +This function may...
2019 Sep 05
0
[PATCH libnbd] generator: Move first_version fields to a single table.
...(1, 0); + "set_export_name", (1, 0); + "get_export_name", (1, 0); + "set_tls", (1, 0); + "get_tls", (1, 0); + "set_tls_certificates", (1, 0); + (*"get_tls_certificates", (1, 0);*) + "set_tls_verify_peer", (1, 0); + "get_tls_verify_peer", (1, 0); + "set_tls_username", (1, 0); + "get_tls_username", (1, 0); + "set_tls_psk_file", (1, 0); + (*"get_tls_psk_file", (1, 0);*) + "add_meta_context", (1, 0); + "connect_uri", (1, 0); + "connect_unix", (1, 0); +...
2019 Sep 05
3
[PATCH libnbd] generator: Move first_version fields to a single table.
This doesn't include Eric's new APIs, but if you push those then I can rebase this one on top. Rich.