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 <daver@couchbase.com>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Jim Walker 2018-02-05 09:34:13 +00:00 committed by Anders Broman
parent 1d999dea5c
commit 80150df416
1 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,8 @@
/* packet-couchbase.c
*
* Routines for Couchbase Protocol
*
* Copyright 2018, Jim Walker <jim@couchbase.com>
* Copyright 2015-2016, Dave Rigby <daver@couchbase.com>
* Copyright 2011, Sergey Avseyev <sergey.avseyev@gmail.com>
*
@ -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}
};