3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
10 #ifndef __PACKET_BTL2CAP_H__
11 #define __PACKET_BTL2CAP_H__
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 #define BTL2CAP_PSM_EATT 0x0027
30 #define BTL2CAP_DYNAMIC_PSM_START 0x1000
32 #define BTL2CAP_FIXED_CID_NULL 0x0000
33 #define BTL2CAP_FIXED_CID_SIGNAL 0x0001
34 #define BTL2CAP_FIXED_CID_CONNLESS 0x0002
35 #define BTL2CAP_FIXED_CID_AMP_MAN 0x0003
36 #define BTL2CAP_FIXED_CID_ATT 0x0004
37 #define BTL2CAP_FIXED_CID_LE_SIGNAL 0x0005
38 #define BTL2CAP_FIXED_CID_SMP 0x0006
39 #define BTL2CAP_FIXED_CID_BR_EDR_SM 0x0007
40 #define BTL2CAP_FIXED_CID_AMP_TEST 0x003F
41 #define BTL2CAP_FIXED_CID_LAST 0x003F
43 #define BTL2CAP_UNKNOWN_CID 0xFFFFFFFF
45 typedef struct _btl2cap_data_t
{
46 uint32_t interface_id
;
48 uint32_t *adapter_disconnect_in_frame
;
49 uint16_t chandle
; /* only low 12 bits used */
50 uint32_t *hci_disconnect_in_frame
;
52 uint32_t *disconnect_in_frame
;
57 bool is_local_psm
; /* otherwise it is PSM in remote device */
58 uint32_t remote_bd_addr_oui
;
59 uint32_t remote_bd_addr_id
;
62 extern int proto_btl2cap
;
67 * Editor modelines - https://www.wireshark.org/tools/modelines.html
72 * indent-tabs-mode: nil
75 * vi: set shiftwidth=4 tabstop=8 expandtab:
76 * :indentSize=4:tabSize=8:noTabs=true: