Displaying 2 results from an estimated 2 matches for "f10597c".
Did you mean:
10597
2019 Sep 17
0
[PATCH libnbd 2/2] api: New API for reading NBD protocol.
...negotiated. */
+ /* Flags set by the state machine to tell what protocol and whether
+ * TLS was negotiated.
+ */
+ const char *protocol;
bool tls_negotiated;
int64_t unique; /* Used for generating cookie numbers. */
diff --git a/tests/get-size.c b/tests/get-size.c
index f10597c..e6f44f7 100644
--- a/tests/get-size.c
+++ b/tests/get-size.c
@@ -26,6 +26,7 @@
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
+#include <string.h>
#include <libnbd.h>
@@ -38,8 +39,10 @@ main (int argc, char *argv[])
{
struct nbd_handle *nbd;...
2019 Sep 17
3
[PATCH libnbd 1/2] api: Add new API to read whether TLS was negotiated.
When LIBNBD_TLS_ALLOW is used we don't have a way to find out if TLS
was really negotiated. This adds a flag and a way to read it back.
Unfortunately there is no test yet, because LIBNBD_TLS_ALLOW is not
tested -- it really should be but requires quite a complicated set of
tests because ideally we'd like to find out whether it falls back
correctly for all supported servers.
---
TODO