Displaying 3 results from an estimated 3 matches for "some_description".
2020 Aug 27
2
Re: [nbdkit PATCH v2 2/8] api: Add nbdkit_add_default_export
...lper
> function).
I'm a bit confused by how nbdkit_add_default_export() should be used
and the documentation additions in this patch definitely need some
work, but I'm going to assume it's used like this:
my_list_exports (exports)
{
nbdkit_add_export (exports, "", some_description);
/* Mark the most recently added export as the default: */
nbdkit_add_default_export (exports);
/* Some other exports: */
nbdkit_add_export (exports, "foo", NULL);
nbdkit_add_export (exports, "bar", NULL);
}
You could then argue that .default_export shou...
2020 Aug 27
0
Re: [nbdkit PATCH v2 2/8] api: Add nbdkit_add_default_export
...it confused by how nbdkit_add_default_export() should be used
> and the documentation additions in this patch definitely need some
> work, but I'm going to assume it's used like this:
>
> my_list_exports (exports)
> {
> nbdkit_add_export (exports, "", some_description);
> /* Mark the most recently added export as the default: */
> nbdkit_add_default_export (exports);
>
> /* Some other exports: */
> nbdkit_add_export (exports, "foo", NULL);
> nbdkit_add_export (exports, "bar", NULL);
> }
Yes,...
2020 Aug 27
10
[nbdkit PATCH v2 0/8] exportname filter
This is a revision of my .default_export work, plus new work on
.export_descriptions and a new exportname filter. I think it is
now ready to check in.
Things I'd still like in 1.22:
- the file plugin should implement .list_exports (patch already posted,
but it needs rebasing on this series)
- the ext2 filter should override .list_exports when in exportname mode
- the nbd plugin should be