search for: 8f4fed9d

Displaying 3 results from an estimated 3 matches for "8f4fed9d".

2020 Aug 10
0
[nbdkit PATCH] server: Permit - and _ in plugin names
..., and B<must> contain only ASCII -alphanumeric characters and be unique amongst all plugins. +alphanumeric characters as well as dash or underscore, must begin with +a letter, and be unique amongst all filters. =head2 C<.version> diff --git a/server/backend.c b/server/backend.c index 8f4fed9d..046aacb4 100644 --- a/server/backend.c +++ b/server/backend.c @@ -98,10 +98,16 @@ backend_load (struct backend *b, const char *name, void (*load) (void)) program_name, b->filename, b->type); exit (EXIT_FAILURE); } - for (i = 0; i < len; ++i) { + if (! ascii_isalpha...
2020 Aug 07
0
[nbdkit PATCH 1/3] server: Implement nbdkit_is_tls for use during .open
...readonly, const char *exportname, + int is_tls); int (*prepare) (struct backend *, void *handle, int readonly); int (*finalize) (struct backend *, void *handle); void (*close) (struct backend *, void *handle); diff --git a/server/backend.c b/server/backend.c index 75ca53be..8f4fed9d 100644 --- a/server/backend.c +++ b/server/backend.c @@ -186,8 +186,8 @@ backend_open (struct backend *b, int readonly, const char *exportname) GET_CONN; struct handle *h = get_handle (conn, b->i); - controlpath_debug ("%s: open readonly=%d exportname=\"%s\"", -...
2020 Aug 07
7
[nbdkit PATCH 0/3] Content differentiation during --tls=on
Patch 3 still needs tests added, but it is at least working from my simple command line tests. Eric Blake (3): server: Implement nbdkit_is_tls for use during .open server: Expose final thread_model to filter's .get_ready tlsdummy: New filter docs/nbdkit-filter.pod | 21 +- docs/nbdkit-plugin.pod | 34 ++- docs/nbdkit-tls.pod