From 80150df416910ceb2669e406b78b0cfc59c9949e Mon Sep 17 00:00:00 2001 From: Jim Walker Date: Mon, 5 Feb 2018 09:34:13 +0000 Subject: [PATCH] Update couchbase dissector with new HELLO feature values Simply add missing feature values to the existing table Change-Id: Ie4b0876df1d736af1cd1171a6645df75e2eb8cf2 Reviewed-on: https://code.wireshark.org/review/25611 Reviewed-by: Dave Rigby Reviewed-by: Anders Broman --- epan/dissectors/packet-couchbase.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/epan/dissectors/packet-couchbase.c b/epan/dissectors/packet-couchbase.c index a003d6c8c4..b1242116f8 100644 --- a/epan/dissectors/packet-couchbase.c +++ b/epan/dissectors/packet-couchbase.c @@ -1,6 +1,8 @@ /* packet-couchbase.c * * Routines for Couchbase Protocol + * + * Copyright 2018, Jim Walker * Copyright 2015-2016, Dave Rigby * Copyright 2011, Sergey Avseyev * @@ -734,7 +736,7 @@ static const int * subdoc_doc_flags[] = { }; static const value_string feature_vals[] = { - {0x01, "Datatype"}, + {0x01, "Datatype (deprecated)"}, {0x02, "TLS"}, {0x03, "TCP Nodelay"}, {0x04, "Mutation Seqno"}, @@ -746,6 +748,9 @@ static const value_string feature_vals[] = { {0x0a, "Snappy"}, {0x0b, "JSON"}, {0x0c, "Duplex"}, + {0x0d, "Clustermap Change Notification"}, + {0x0e, "Unordered Execution"}, + {0x0f, "Tracing"}, {0, NULL} };