34 #include <sys/socket.h>
37 #define L2CAP_DEFAULT_MTU 672
38 #define L2CAP_DEFAULT_FLUSH_TO 0xFFFF
50 #define L2CAP_OPTIONS 0x01
61 #define L2CAP_CONNINFO 0x02
68 #define L2CAP_LM_MASTER 0x0001
69 #define L2CAP_LM_AUTH 0x0002
70 #define L2CAP_LM_ENCRYPT 0x0004
71 #define L2CAP_LM_TRUSTED 0x0008
72 #define L2CAP_LM_RELIABLE 0x0010
73 #define L2CAP_LM_SECURE 0x0020
76 #define L2CAP_COMMAND_REJ 0x01
77 #define L2CAP_CONN_REQ 0x02
78 #define L2CAP_CONN_RSP 0x03
79 #define L2CAP_CONF_REQ 0x04
80 #define L2CAP_CONF_RSP 0x05
81 #define L2CAP_DISCONN_REQ 0x06
82 #define L2CAP_DISCONN_RSP 0x07
83 #define L2CAP_ECHO_REQ 0x08
84 #define L2CAP_ECHO_RSP 0x09
85 #define L2CAP_INFO_REQ 0x0a
86 #define L2CAP_INFO_RSP 0x0b
87 #define L2CAP_CREATE_REQ 0x0c
88 #define L2CAP_CREATE_RSP 0x0d
89 #define L2CAP_MOVE_REQ 0x0e
90 #define L2CAP_MOVE_RSP 0x0f
91 #define L2CAP_MOVE_CFM 0x10
92 #define L2CAP_MOVE_CFM_RSP 0x11
95 #define L2CAP_FEAT_FLOWCTL 0x00000001
96 #define L2CAP_FEAT_RETRANS 0x00000002
97 #define L2CAP_FEAT_BIDIR_QOS 0x00000004
98 #define L2CAP_FEAT_ERTM 0x00000008
99 #define L2CAP_FEAT_STREAMING 0x00000010
100 #define L2CAP_FEAT_FCS 0x00000020
101 #define L2CAP_FEAT_EXT_FLOW 0x00000040
102 #define L2CAP_FEAT_FIXED_CHAN 0x00000080
103 #define L2CAP_FEAT_EXT_WINDOW 0x00000100
104 #define L2CAP_FEAT_UCD 0x00000200
107 #define L2CAP_FC_L2CAP 0x02
108 #define L2CAP_FC_CONNLESS 0x04
109 #define L2CAP_FC_A2MP 0x08
116 #define L2CAP_HDR_SIZE 4
123 #define L2CAP_CMD_HDR_SIZE 4
128 #define L2CAP_CMD_REJ_SIZE 2
134 #define L2CAP_CONN_REQ_SIZE 4
142 #define L2CAP_CONN_RSP_SIZE 8
145 #define L2CAP_CR_SUCCESS 0x0000
146 #define L2CAP_CR_PEND 0x0001
147 #define L2CAP_CR_BAD_PSM 0x0002
148 #define L2CAP_CR_SEC_BLOCK 0x0003
149 #define L2CAP_CR_NO_MEM 0x0004
152 #define L2CAP_CS_NO_INFO 0x0000
153 #define L2CAP_CS_AUTHEN_PEND 0x0001
154 #define L2CAP_CS_AUTHOR_PEND 0x0002
161 #define L2CAP_CONF_REQ_SIZE 4
169 #define L2CAP_CONF_RSP_SIZE 6
171 #define L2CAP_CONF_SUCCESS 0x0000
172 #define L2CAP_CONF_UNACCEPT 0x0001
173 #define L2CAP_CONF_REJECT 0x0002
174 #define L2CAP_CONF_UNKNOWN 0x0003
175 #define L2CAP_CONF_PENDING 0x0004
176 #define L2CAP_CONF_EFS_REJECT 0x0005
183 #define L2CAP_CONF_OPT_SIZE 2
185 #define L2CAP_CONF_MTU 0x01
186 #define L2CAP_CONF_FLUSH_TO 0x02
187 #define L2CAP_CONF_QOS 0x03
188 #define L2CAP_CONF_RFC 0x04
189 #define L2CAP_CONF_FCS 0x05
190 #define L2CAP_CONF_EFS 0x06
191 #define L2CAP_CONF_EWS 0x07
193 #define L2CAP_CONF_MAX_SIZE 22
195 #define L2CAP_MODE_BASIC 0x00
196 #define L2CAP_MODE_RETRANS 0x01
197 #define L2CAP_MODE_FLOWCTL 0x02
198 #define L2CAP_MODE_ERTM 0x03
199 #define L2CAP_MODE_STREAMING 0x04
201 #define L2CAP_SERVTYPE_NOTRAFFIC 0x00
202 #define L2CAP_SERVTYPE_BESTEFFORT 0x01
203 #define L2CAP_SERVTYPE_GUARANTEED 0x02
209 #define L2CAP_DISCONN_REQ_SIZE 4
215 #define L2CAP_DISCONN_RSP_SIZE 4
220 #define L2CAP_INFO_REQ_SIZE 2
227 #define L2CAP_INFO_RSP_SIZE 4
230 #define L2CAP_IT_CL_MTU 0x0001
231 #define L2CAP_IT_FEAT_MASK 0x0002
234 #define L2CAP_IR_SUCCESS 0x0000
235 #define L2CAP_IR_NOTSUPP 0x0001
242 #define L2CAP_CREATE_REQ_SIZE 5
250 #define L2CAP_CREATE_RSP_SIZE 8
256 #define L2CAP_MOVE_REQ_SIZE 3
262 #define L2CAP_MOVE_RSP_SIZE 4
268 #define L2CAP_MOVE_CFM_SIZE 4
273 #define L2CAP_MOVE_CFM_RSP_SIZE 2