search for: get_tls_certificate

Displaying 13 results from an estimated 13 matches for "get_tls_certificate".

Did you mean: get_tls_certificates
2019 Sep 05
1
Re: [PATCH libnbd] generator: Move first_version fields to a single table.
...ndle_name", (1, 0); > + "get_handle_name", (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);*) If we ever do implement this (and any other commented out for various reasons), it won't be a 1.0 version... > + > + (* Added in 1.1 development series. *) > + "can_fast_zero", (1, 2); ..so maybe it's better to sink the commented future APIs to the...
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.
2019 Jan 29
0
Icecast Digest, Vol 175, Issue 11
...ng on systrum.net <http://systrum.net/>; OS: Linux 4.9.0-8-amd64, systrum.net <http://systrum.net/>, #1 SMP Debian 4.9.130-2 (2018-10-27), x86_64; Address Bits: 64 > [2019-01-28 21:17:18] WARN main/main YP server handling has been disabled > [2019-01-28 21:17:18] INFO connection/get_tls_certificate No TLS capability on any configured ports > [2019-01-28 21:17:19] DBUG slave/_slave_thread checking master stream list > [2019-01-28 21:19:19] DBUG slave/_slave_thread checking master stream list > [2019-01-28 21:19:20] DBUG connection/_handle_aliases alias has made / into /status.xsl &...
2019 Sep 05
0
[PATCH libnbd] generator: Move first_version fields to a single table.
...back", (1, 0); + "set_handle_name", (1, 0); + "get_handle_name", (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...
2019 Jan 27
2
YP listings in version 2.5 beta
Hi, I apologise if this has been raised before. I’m finding that with the below settings enabled in my icecast.xml file, YP directory listings work for me when using icecast 2.4.4 but listings aren’t working for me with the same config settings in version 2.5. <directory> <yp-url-timeout>15</yp-url-timeout>
2020 Sep 04
0
[libnbd PATCH 1/2] api: Add nbd_set_strict_mode
...); + (* Added in 1.5.x development cycle, will be stable and supported in 1.6. *) + "set_strict_mode", (1, 6); + "get_strict_mode", (1, 6); + (* These calls are proposed for a future version of libnbd, but * have not been added to any released version so far. "get_tls_certificates", (1, ??); diff --git a/lib/disconnect.c b/lib/disconnect.c index dcb95d8..22cd5d7 100644 --- a/lib/disconnect.c +++ b/lib/disconnect.c @@ -1,5 +1,5 @@ /* NBD client library in userspace - * Copyright (C) 2013-2019 Red Hat Inc. + * Copyright (C) 2013-2020 Red Hat Inc. * * This library is...
2020 Jul 20
0
[PATCH libnbd PROPOSAL] Add APIs for listing exports from an NBD server.
...t;set_list_exports", (1, 4); + "get_list_exports", (1, 4); + "get_nr_list_exports", (1, 4); + "get_list_export_name", (1, 4); + (* These calls are proposed for a future version of libnbd, but * have not been added to any released version so far. "get_tls_certificates", (1, ??); diff --git a/generator/Makefile.am b/generator/Makefile.am index 0389d70..d64a953 100644 --- a/generator/Makefile.am +++ b/generator/Makefile.am @@ -30,6 +30,7 @@ states_code = \ states-issue-command.c \ states-magic.c \ states-newstyle-opt-export-name.c \ + states-newstyle-o...
2020 Sep 11
0
[libnbd PATCH v2 3/5] api: Add nbd_set_strict_mode
...); + (* Added in 1.5.x development cycle, will be stable and supported in 1.6. *) + "set_strict_mode", (1, 6); + "get_strict_mode", (1, 6); + (* These calls are proposed for a future version of libnbd, but * have not been added to any released version so far. "get_tls_certificates", (1, ??); diff --git a/lib/handle.c b/lib/handle.c index 4d26842..2dc1fb5 100644 --- a/lib/handle.c +++ b/lib/handle.c @@ -74,6 +74,8 @@ nbd_create (void) s = getenv ("LIBNBD_DEBUG"); h->debug = s && strcmp (s, "1") == 0; + h->strict = LIBNBD_STRICT_...
2019 Jan 29
0
Icecast Digest, Vol 175, Issue 11
...ng on systrum.net <http://systrum.net/>; OS: Linux 4.9.0-8-amd64, systrum.net <http://systrum.net/>, #1 SMP Debian 4.9.130-2 (2018-10-27), x86_64; Address Bits: 64 > [2019-01-28 21:17:18] WARN main/main YP server handling has been disabled > [2019-01-28 21:17:18] INFO connection/get_tls_certificate No TLS capability on any configured ports > [2019-01-28 21:17:19] DBUG slave/_slave_thread checking master stream list > [2019-01-28 21:19:19] DBUG slave/_slave_thread checking master stream list > [2019-01-28 21:19:20] DBUG connection/_handle_aliases alias has made / into /status.xsl &...
2020 Sep 04
4
[RFC libnbd PATCH 0/2] Add knobs for client- vs. server-side validation
We have been inconsistent on how much we reject client-side without even consulting the server, vs. how much we depend on the server to detect failure (even if our request can be deemed undefined per NBD protocol). I'd like to change it so that by default, we reject as much as we can client-side for less traffic, but where the user can also change things on the fly for server-side integration
2020 Jul 20
2
[PATCH libnbd PROPOSAL] Add APIs for listing exports from an NBD server.
Proposal for new APIs to list exports. The general shape of the API can probably best be seen from the examples/list-exports.c example. Rich.
2019 Feb 03
1
YP listings in version 2.5 beta
...strum.net <http://systrum.net/>; OS: Linux 4.9.0-8-amd64, systrum.net <http://systrum.net/>, #1 SMP Debian 4.9.130-2 (2018-10-27), x86_64; Address Bits: 64 >> [2019-01-28 21:17:18] WARN main/main YP server handling has been disabled >> [2019-01-28 21:17:18] INFO connection/get_tls_certificate No TLS capability on any configured ports >> [2019-01-28 21:17:19] DBUG slave/_slave_thread checking master stream list >> [2019-01-28 21:19:19] DBUG slave/_slave_thread checking master stream list >> [2019-01-28 21:19:20] DBUG connection/_handle_aliases alias has made / into /...
2020 Sep 11
10
[libnbd PATCH v2 0/5] Add knobs for client- vs. server-side validation
In v2: - now based on my proposal to add LIBNBD_SHUTDOWN_IMMEDIATE - four flags instead of two: STRICT_FLAGS is new (patch 4), and STRICT_BOUNDS is separate from STRICT_ZERO_SIZE (patch 5) - various refactorings for more shared code and less duplication Eric Blake (5): api: Add xxx_MASK constant for each Flags type generator: Refactor filtering of accepted OFlags api: Add