aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bthci_sco.c
diff options
context:
space:
mode:
authorMatthias Ringwald <matthias@ringwald.ch>2022-04-09 19:10:44 +0200
committerMatthias Ringwald <matthias@ringwald.ch>2022-04-09 19:10:44 +0200
commit50de7dd6cae9bd145d2e0117339bf46ae3f2b2a1 (patch)
tree75ea254c250df0ee9749c58c56ea6ddd46207ab9 /epan/dissectors/packet-bthci_sco.c
parentfb9a176587454e8168c2ba068d5701332638109c (diff)
bluetooth: show SCO packet type in col_protocol
Diffstat (limited to 'epan/dissectors/packet-bthci_sco.c')
-rw-r--r--epan/dissectors/packet-bthci_sco.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-bthci_sco.c b/epan/dissectors/packet-bthci_sco.c
index 70c82eced3..a6029f1441 100644
--- a/epan/dissectors/packet-bthci_sco.c
+++ b/epan/dissectors/packet-bthci_sco.c
@@ -82,6 +82,8 @@ dissect_bthci_sco(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *dat
ti = proto_tree_add_item(tree, proto_bthci_sco, tvb, offset, tvb_captured_length(tvb), ENC_NA);
bthci_sco_tree = proto_item_add_subtree(ti, ett_bthci_sco);
+ col_set_str(pinfo->cinfo, COL_PROTOCOL, "HCI_SCO");
+
switch (pinfo->p2p_dir) {
case P2P_DIR_SENT:
col_set_str(pinfo->cinfo, COL_INFO, "Sent ");