Displaying 1 result from an estimated 1 matches for "1dd84ccb".
2020 Jul 10
0
[RFC nbdkit PATCH] server: Allow --run with --vsock
...ng vsock
+loopback (when the B<--vsock> option is used, only C<$uri> is valid).
Note there is some magic here, since qemu and guestfish URLs have a
different format, so nbdkit tries to guess which you are running. If
diff --git a/server/internal.h b/server/internal.h
index 68c53366..1dd84ccb 100644
--- a/server/internal.h
+++ b/server/internal.h
@@ -129,6 +129,7 @@ extern bool tls_verify_peer;
extern char *unixsocket;
extern const char *user, *group;
extern bool verbose;
+extern bool vsock;
extern int saved_stdin;
extern int saved_stdout;
diff --git a/server/captive.c b/server/ca...