search for: a826363

Displaying 2 results from an estimated 2 matches for "a826363".

Did you mean: 26363
2019 Apr 29
3
[nbdkit PATCH 0/2] Let nbd plugin connect to TCP socket
Accepting only Unix sockets can be a bit limiting; let's be more flexible. Eric Blake (2): nbd: Refactor Unix socket connection nbd: Support TCP socket plugins/nbd/nbdkit-nbd-plugin.pod | 36 ++++-- plugins/nbd/nbd.c | 175 ++++++++++++++++++++++-------- TODO | 3 - 3 files changed, 161 insertions(+), 53 deletions(-) -- 2.20.1
2019 Apr 29
0
[nbdkit PATCH 2/2] nbd: Support TCP socket
...$unixsocket' + + ┌────────────┐ ┌────────┐ ┌────────────┐ + │ old client │ ────────▶│ nbdkit │ ────────▶│ new server │ + └────────────┘ Unix └────────┘ TCP └────────────┘ + =head1 SEE ALSO L<nbdkit(1)>, diff --git a/plugins/nbd/nbd.c b/plugins/nbd/nbd.c index a826363..ce6859d 100644 --- a/plugins/nbd/nbd.c +++ b/plugins/nbd/nbd.c @@ -35,11 +35,15 @@ #include <stdlib.h> #include <stddef.h> #include <stdbool.h> +#include <stdio.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <inttypes.h&gt...