From d6f9cd19fdc815f898865ab5fbfd814577ad72dd Mon Sep 17 00:00:00 2001 From: Martin Schwenke Date: Mon, 4 Sep 2017 16:48:40 +1000 Subject: [PATCH] ctdb-protocol: Add new data structure ctdb_connection_list Signed-off-by: Martin Schwenke Reviewed-by: Amitay Isaacs --- ctdb/protocol/protocol.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ctdb/protocol/protocol.h b/ctdb/protocol/protocol.h index 28a28f41b2f..3c57e20ffa0 100644 --- a/ctdb/protocol/protocol.h +++ b/ctdb/protocol/protocol.h @@ -565,6 +565,11 @@ struct ctdb_connection { }; }; +struct ctdb_connection_list { + uint32_t num; + struct ctdb_connection *conn; +}; + struct ctdb_tunable { const char *name; uint32_t value; -- 2.34.1