coap: Change Uri-Path from hidden to generated

This field is generated so mark it so.  It may also be usable so
make it visible.

Change-Id: I10d951f234f1fba240059bc791b40d25dede07a9
Reviewed-on: https://code.wireshark.org/review/25350
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
This commit is contained in:
Stig Bjørlykke 2018-01-17 13:38:41 +01:00 committed by Alexis La Goutte
parent d1254247b7
commit d86f820206
1 changed files with 3 additions and 3 deletions

View File

@ -1142,11 +1142,11 @@ dissect_coap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, void* d
coinfo->block_mflag ? "" : "End of ", coinfo->block_number);
if (wmem_strbuf_get_len(coinfo->uri_str_strbuf) > 0) {
col_append_fstr(pinfo->cinfo, COL_INFO, ", %s", wmem_strbuf_get_str(coinfo->uri_str_strbuf));
/* Add to hidden protocol item as well */
/* Add a generated protocol item as well */
pi = proto_tree_add_string(coap_tree, hf_coap_opt_uri_path_recon, tvb, 0, 0, wmem_strbuf_get_str(coinfo->uri_str_strbuf));
PROTO_ITEM_SET_HIDDEN(pi);
PROTO_ITEM_SET_GENERATED(pi);
}
if (wmem_strbuf_get_len(coinfo->uri_query_strbuf)> 0)
if (wmem_strbuf_get_len(coinfo->uri_query_strbuf) > 0)
col_append_str(pinfo->cinfo, COL_INFO, wmem_strbuf_get_str(coinfo->uri_query_strbuf));
/* dissect the payload */