'struct sockaddr' is not large enough to store a general sockaddr.
[nbdkit/ericb.git] / TODO
blob09df80e96c90174b9e75c93691267efb4a2cf3a5
1 * Performance - measure and improve it.
3 * Implement the new protocol and export names.  With export names it
4   should be possible to have multiple plugins on the command line
5   (each responding to a different export of course):
7     nbdkit --export /foo plugin.so --export /bar another-plugin.so
9   Note it should also be possible to either elect one plugin as the
10   default that accepts all exportnames, or to divide the export name
11   "space" up using regexps or wildcards.
13 * Implement true parallel request handling.  Currently
14   NBDKIT_THREAD_MODEL_SERIALIZE_REQUESTS and
15   NBDKIT_THREAD_MODEL_PARALLEL are the same, because we handle
16   requests within each connection synchronously one at a time.  We
17   could (and should) be able to handle them in parallel by having
18   another thread pool for requests.