aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bthci_acl.h
diff options
context:
space:
mode:
authorMichal Labedzki <michal.labedzki@tieto.com>2014-06-02 17:05:31 +0200
committerMichal Labedzki <michal.labedzki@tieto.com>2014-06-22 16:56:31 +0000
commit164af0050dd070109f4aaa5fdd3f23b41ebaa98d (patch)
tree9420e78e5c3bc815dccac097b812438841621bc3 /epan/dissectors/packet-bthci_acl.h
parent58bbfa5ee3c3e0beaf16585735261d77bfd8dd79 (diff)
Bluetooth: Complete sessions
Some interfaces support multiple Bluetooth adapters with events like add/remove. We must support that to distinquish adapters streams in case that new adapter has the same id that old one. Next one is create session for "Connection Handle", so next layer will now when it is connected and disconnected. This is also used to distinguish streams. Change-Id: I9e062c8e4cc9c033b75f1a596e8351a215169843 Reviewed-on: https://code.wireshark.org/review/2548 Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com>
Diffstat (limited to 'epan/dissectors/packet-bthci_acl.h')
-rw-r--r--epan/dissectors/packet-bthci_acl.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/epan/dissectors/packet-bthci_acl.h b/epan/dissectors/packet-bthci_acl.h
index 1de39846a1..421475ddd6 100644
--- a/epan/dissectors/packet-bthci_acl.h
+++ b/epan/dissectors/packet-bthci_acl.h
@@ -23,9 +23,11 @@
#define __PACKET_BTHCI_ACL_H__
typedef struct _bthci_acl_data_t {
- guint32 interface_id;
- guint32 adapter_id;
- guint16 chandle; /* only low 12 bits used */
+ guint32 interface_id;
+ guint32 adapter_id;
+ guint32 *adapter_disconnect_in_frame;
+ guint16 chandle; /* only low 12 bits used */
+ guint32 *disconnect_in_frame;
guint32 remote_bd_addr_oui;
guint32 remote_bd_addr_id;