aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Turner <synfinatic@gmail.com>2024-02-19 09:29:13 -0800
committerJohn Thacker <johnthacker@gmail.com>2024-02-20 16:50:09 +0000
commitfed475108746e0476047f05e8eeb744e52aff780 (patch)
tree922e2938765675e8da7a3169baf4bdf0a35db57f
parent4300f713b1e15ea5926415018a945e15c73a05de (diff)
add missing field for Roon Discovery
-rw-r--r--epan/dissectors/packet-roon_discovery.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/epan/dissectors/packet-roon_discovery.c b/epan/dissectors/packet-roon_discovery.c
index dd79bbc3cd..8ac30ca1b2 100644
--- a/epan/dissectors/packet-roon_discovery.c
+++ b/epan/dissectors/packet-roon_discovery.c
@@ -44,6 +44,7 @@ static int hf_roon_disco_name;
static int hf_roon_disco_os_version;
static int hf_roon_disco_protocol_version;
static int hf_roon_disco_protocol_hash;
+static int hf_roon_disco_query_service_id;
static int hf_roon_disco_raat_version;
static int hf_roon_disco_service_id;
static int hf_roon_disco_tcp_port;
@@ -86,6 +87,7 @@ static const roon_map roon_disco_string_fields[] = {
{ "os_version" , "OS Version" , &hf_roon_disco_os_version } ,
{ "protocol_hash" , "Protocol Hash" , &hf_roon_disco_protocol_hash } ,
{ "protocol_version" , "Protocol Version" , &hf_roon_disco_protocol_version } ,
+ { "query_service_id" , "Query ServiceID" , &hf_roon_disco_query_service_id } ,
{ "raat_version" , "RAAT Version" , &hf_roon_disco_raat_version } ,
{ "service_id" , "ServiceID" , &hf_roon_disco_service_id } ,
{ "tcp_port" , "TCP Port" , &hf_roon_disco_tcp_port } ,
@@ -291,6 +293,10 @@ proto_register_roon_discover(void)
{ "Protocol Version", "roon_disco.protocol_version",
FT_STRING, BASE_NONE, NULL, 0, NULL, HFILL } },
+ { &hf_roon_disco_query_service_id,
+ { "Query ServiceID", "roon_disco.query_service_id",
+ FT_STRING, BASE_NONE, NULL, 0, NULL, HFILL } },
+
{ &hf_roon_disco_raat_version,
{ "RAAT Version", "roon_disco.raat_version",
FT_STRING, BASE_NONE, NULL, 0, NULL, HFILL } },