search for: 866360b

Displaying 3 results from an estimated 3 matches for "866360b".

Did you mean: 66360
2019 Sep 24
0
[PATCH nbdkit 1/4] common/protocol: Rename protocol.h to nbd-protocol.h.
...KIT_API_VERSION 2 #include <nbdkit-plugin.h> -#include "protocol.h" +#include "nbd-protocol.h" #include "byte-swapping.h" #include "cleanup.h" diff --git a/server/protocol-handshake-newstyle.c b/server/protocol-handshake-newstyle.c index 38978c6..866360b 100644 --- a/server/protocol-handshake-newstyle.c +++ b/server/protocol-handshake-newstyle.c @@ -41,7 +41,7 @@ #include "internal.h" #include "byte-swapping.h" -#include "protocol.h" +#include "nbd-protocol.h" /* Maximum number of client options we all...
2019 Sep 24
0
[PATCH nbdkit 2/4] common/protocol: Remove protostrings.sed, use bash+sed instead.
...ne.c @@ -54,6 +54,7 @@ #include <nbdkit-plugin.h> #include "nbd-protocol.h" +#include "protostrings.h" #include "byte-swapping.h" #include "cleanup.h" diff --git a/server/protocol-handshake-newstyle.c b/server/protocol-handshake-newstyle.c index 866360b..104796a 100644 --- a/server/protocol-handshake-newstyle.c +++ b/server/protocol-handshake-newstyle.c @@ -42,6 +42,7 @@ #include "internal.h" #include "byte-swapping.h" #include "nbd-protocol.h" +#include "protostrings.h" /* Maximum number of client opt...
2019 Sep 24
11
[PATCH nbdkit 0/4] common/protocol: Unify public <nbd-protocol.h>
We should have only one NBD protocol file. Let's make nbdkit's version the canonical one, and use it in libnbd. Rich.