aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-btavctp.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-02-21 21:35:19 +0000
committerMichael Mann <mmann78@netscape.net>2013-02-21 21:35:19 +0000
commitbfeeba6f5e9ae0994842992c04670247c71bd879 (patch)
treed74fb4ade739412f0cc1d504e3bb4bd8f4c3089d /epan/dissectors/packet-btavctp.h
parentb58c95cf10b0f2dce7540f5d011437c38917e6ee (diff)
Fix AVCTP, AVRCP, HCI AVL and L2CP for multiple interfaces/adapters
From Michal Labedzki, bug 8367 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8367) svn path=/trunk/; revision=47809
Diffstat (limited to 'epan/dissectors/packet-btavctp.h')
-rw-r--r--epan/dissectors/packet-btavctp.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/epan/dissectors/packet-btavctp.h b/epan/dissectors/packet-btavctp.h
index 1a25b66e69..38d078a4c1 100644
--- a/epan/dissectors/packet-btavctp.h
+++ b/epan/dissectors/packet-btavctp.h
@@ -28,8 +28,11 @@
#define __PACKET_BTAVCTP_H__
typedef struct _btavctp_data_t {
- guint8 cr;
- guint16 psm;
+ guint32 interface_id;
+ guint32 adapter_id;
+ guint16 chandle; /* only low 12 bits used */
+ guint16 psm;
+ guint8 cr;
} btavctp_data_t;
#endif