aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Labedzki <michal.labedzki@tieto.com>2015-03-01 15:39:36 +0100
committerMichal Labedzki <michal.labedzki@tieto.com>2015-03-06 09:20:05 +0000
commit2e8639d64b7aec5bdc38f12e2d2f125a64a47ed9 (patch)
treeeb0e72444a226d3b6bafdcd1dda62df88f85e076
parentdf8b1a0154108465f145c0eb53b5c0e8c166250c (diff)
Bluetooth: ATT: Add request/response visual indicators
Use feature for visual tracking request/response on Packet List. Change-Id: Iabe2ddf46425ebd586ec462140b3f7d8f7ebbf56 Reviewed-on: https://code.wireshark.org/review/7525 Petri-Dish: Michal Labedzki <michal.labedzki@tieto.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com>
-rw-r--r--epan/dissectors/packet-btatt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-btatt.c b/epan/dissectors/packet-btatt.c
index 06667ef225..50536133b4 100644
--- a/epan/dissectors/packet-btatt.c
+++ b/epan/dissectors/packet-btatt.c
@@ -4832,12 +4832,12 @@ proto_register_btatt(void)
},
{&hf_request_in_frame,
{"Request in Frame", "btatt.request_in_frame",
- FT_FRAMENUM, BASE_NONE, NULL, 0x0,
+ FT_FRAMENUM, BASE_NONE, FRAMENUM_TYPE(FT_FRAMENUM_RESPONSE), 0x0,
NULL, HFILL}
},
{&hf_response_in_frame,
{"Response in Frame", "btatt.response_in_frame",
- FT_FRAMENUM, BASE_NONE, NULL, 0x0,
+ FT_FRAMENUM, BASE_NONE, FRAMENUM_TYPE(FT_FRAMENUM_REQUEST), 0x0,
NULL, HFILL}
},
};