Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
packet-btl2cap.h
1 /* packet-btl2cap.h
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9 
10 #ifndef __PACKET_BTL2CAP_H__
11 #define __PACKET_BTL2CAP_H__
12 
13 #define BTL2CAP_PSM_SDP 0x0001
14 #define BTL2CAP_PSM_RFCOMM 0x0003
15 #define BTL2CAP_PSM_TCS_BIN 0x0005
16 #define BTL2CAP_PSM_TCS_BIN_CORDLESS 0x0007
17 #define BTL2CAP_PSM_BNEP 0x000f
18 #define BTL2CAP_PSM_HID_CTRL 0x0011
19 #define BTL2CAP_PSM_HID_INTR 0x0013
20 #define BTL2CAP_PSM_UPNP 0x0015
21 #define BTL2CAP_PSM_AVCTP_CTRL 0x0017
22 #define BTL2CAP_PSM_AVDTP 0x0019
23 #define BTL2CAP_PSM_AVCTP_BRWS 0x001b
24 #define BTL2CAP_PSM_UDI_C_PLANE 0x001d
25 #define BTL2CAP_PSM_ATT 0x001f
26 #define BTL2CAP_PSM_3DS 0x0021
27 #define BTL2CAP_PSM_LE_IPSP 0x0023
28 
29 #define BTL2CAP_DYNAMIC_PSM_START 0x1000
30 
31 #define BTL2CAP_FIXED_CID_NULL 0x0000
32 #define BTL2CAP_FIXED_CID_SIGNAL 0x0001
33 #define BTL2CAP_FIXED_CID_CONNLESS 0x0002
34 #define BTL2CAP_FIXED_CID_AMP_MAN 0x0003
35 #define BTL2CAP_FIXED_CID_ATT 0x0004
36 #define BTL2CAP_FIXED_CID_LE_SIGNAL 0x0005
37 #define BTL2CAP_FIXED_CID_SMP 0x0006
38 #define BTL2CAP_FIXED_CID_AMP_TEST 0x003F
39 #define BTL2CAP_FIXED_CID_LAST 0x003F
40 
41 #define BTL2CAP_UNKNOWN_CID 0xFFFFFFFF
42 
43 typedef struct _btl2cap_data_t {
44  guint32 interface_id;
45  guint32 adapter_id;
46  guint32 *adapter_disconnect_in_frame;
47  guint16 chandle; /* only low 12 bits used */
48  guint32 *hci_disconnect_in_frame;
49  guint16 psm;
50  guint32 *disconnect_in_frame;
51  guint16 cid;
52  guint32 local_cid;
53  guint32 remote_cid;
54 
55  gboolean is_local_psm; /* otherwise it is PSM in remote device */
56  guint32 remote_bd_addr_oui;
57  guint32 remote_bd_addr_id;
59 
60 extern int proto_btl2cap;
61 
62 #endif
63 
64 /*
65  * Editor modelines - http://www.wireshark.org/tools/modelines.html
66  *
67  * Local variables:
68  * c-basic-offset: 4
69  * tab-width: 8
70  * indent-tabs-mode: nil
71  * End:
72  *
73  * vi: set shiftwidth=4 tabstop=8 expandtab:
74  * :indentSize=4:tabSize=8:noTabs=true:
75  */
Definition: packet-btl2cap.h:43