search for: reflection_base64

Displaying 4 results from an estimated 4 matches for "reflection_base64".

2019 Sep 28
0
[PATCH nbdkit v2 2/4] Rename nbdkit-reflection-plugin to nbdkit-info-plugin.
...\ +#define info_config_help \ "mode=exportname|base64exportname|address Plugin mode (default exportname)." /* Provide a way to detect if the base64 feature is supported. */ static void -reflection_dump_plugin (void) +info_dump_plugin (void) { #ifdef HAVE_BASE64 - printf ("reflection_base64=yes\n"); + printf ("info_base64=yes\n"); #endif } @@ -228,7 +228,7 @@ handle_address (struct sockaddr *sa, socklen_t addrlen, * - Leaking host information (eg. paths). */ static void * -reflection_open (int readonly) +info_open (int readonly) { const char *export_name;...
2019 Sep 15
0
[PATCH nbdkit 1/4] Add reflection plugin.
...t;]B<base64exportname> + +Reflect the export name passed by the client, assuming the client +string is base64 encoded. + +This mode is only supported if nbdkit was compiled with GnuTLS E<ge> +3.6.0. You can find out by checking if: + + $ nbdkit reflection --dump-plugin + +contains: + + reflection_base64=yes + +=item [B<mode=>]B<exportname> + +Reflect the raw export name passed by the client. Note the export +name cannot contain ASCII NUL characters. + +This is the default mode. + +C<mode=> is a magic config key and may be omitted in most cases. +See L<nbdkit(1)/Magic paramete...
2019 Sep 28
9
[PATCH nbdkit v2 0/4] info: Add mode for sending back server time.
v1 was: https://www.redhat.com/archives/libguestfs/2019-September/thread.html#00361 v2: - Adds a patch to rename the reflection plugin to the info plugin. - Adds tests. Rich.
2019 Sep 15
13
[PATCH nbdkit 0/4] Reflection plugin, peer name.
This series is based on my blog posting here: https://rwmj.wordpress.com/2019/09/13/nbdkit-supports-exportnames/ It depends on the fix for realloc: https://www.redhat.com/archives/libguestfs/2019-September/thread.html#00103 This series adds a fun plugin, and also an semi-related feature I've long thought to be desirable. You can consider patches 1 & 4, and patches 2 & 3 as forming