2 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (C) 2000-2001 Qualcomm Incorporated
5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as
9 published by the Free Software Foundation;
11 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
12 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
14 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
15 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
16 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
22 SOFTWARE IS DISCLAIMED.
29 #define L2CAP_DEFAULT_MTU 672
30 #define L2CAP_DEFAULT_FLUSH_TO 0xFFFF
32 #define L2CAP_CONN_TIMEOUT (40000) /* 40 seconds */
33 #define L2CAP_INFO_TIMEOUT (4000) /* 4 seconds */
35 /* L2CAP socket address */
37 sa_family_t l2_family;
42 /* L2CAP socket options */
43 #define L2CAP_OPTIONS 0x01
44 struct l2cap_options {
51 #define L2CAP_CONNINFO 0x02
52 struct l2cap_conninfo {
58 #define L2CAP_LM_MASTER 0x0001
59 #define L2CAP_LM_AUTH 0x0002
60 #define L2CAP_LM_ENCRYPT 0x0004
61 #define L2CAP_LM_TRUSTED 0x0008
62 #define L2CAP_LM_RELIABLE 0x0010
63 #define L2CAP_LM_SECURE 0x0020
65 /* L2CAP command codes */
66 #define L2CAP_COMMAND_REJ 0x01
67 #define L2CAP_CONN_REQ 0x02
68 #define L2CAP_CONN_RSP 0x03
69 #define L2CAP_CONF_REQ 0x04
70 #define L2CAP_CONF_RSP 0x05
71 #define L2CAP_DISCONN_REQ 0x06
72 #define L2CAP_DISCONN_RSP 0x07
73 #define L2CAP_ECHO_REQ 0x08
74 #define L2CAP_ECHO_RSP 0x09
75 #define L2CAP_INFO_REQ 0x0a
76 #define L2CAP_INFO_RSP 0x0b
78 /* L2CAP structures */
82 } __attribute__ ((packed));
83 #define L2CAP_HDR_SIZE 4
85 struct l2cap_cmd_hdr {
89 } __attribute__ ((packed));
90 #define L2CAP_CMD_HDR_SIZE 4
92 struct l2cap_cmd_rej {
94 } __attribute__ ((packed));
96 struct l2cap_conn_req {
99 } __attribute__ ((packed));
101 struct l2cap_conn_rsp {
106 } __attribute__ ((packed));
109 #define L2CAP_CR_SUCCESS 0x0000
110 #define L2CAP_CR_PEND 0x0001
111 #define L2CAP_CR_BAD_PSM 0x0002
112 #define L2CAP_CR_SEC_BLOCK 0x0003
113 #define L2CAP_CR_NO_MEM 0x0004
116 #define L2CAP_CS_NO_INFO 0x0000
117 #define L2CAP_CS_AUTHEN_PEND 0x0001
118 #define L2CAP_CS_AUTHOR_PEND 0x0002
120 struct l2cap_conf_req {
124 } __attribute__ ((packed));
126 struct l2cap_conf_rsp {
131 } __attribute__ ((packed));
133 #define L2CAP_CONF_SUCCESS 0x0000
134 #define L2CAP_CONF_UNACCEPT 0x0001
135 #define L2CAP_CONF_REJECT 0x0002
136 #define L2CAP_CONF_UNKNOWN 0x0003
138 struct l2cap_conf_opt {
142 } __attribute__ ((packed));
143 #define L2CAP_CONF_OPT_SIZE 2
145 #define L2CAP_CONF_MTU 0x01
146 #define L2CAP_CONF_FLUSH_TO 0x02
147 #define L2CAP_CONF_QOS 0x03
148 #define L2CAP_CONF_RFC 0x04
150 #define L2CAP_CONF_MAX_SIZE 22
152 struct l2cap_conf_rfc {
156 __le16 retrans_timeout;
157 __le16 monitor_timeout;
159 } __attribute__ ((packed));
161 #define L2CAP_MODE_BASIC 0x00
162 #define L2CAP_MODE_RETRANS 0x01
163 #define L2CAP_MODE_FLOWCTL 0x02
165 struct l2cap_disconn_req {
168 } __attribute__ ((packed));
170 struct l2cap_disconn_rsp {
173 } __attribute__ ((packed));
175 struct l2cap_info_req {
177 } __attribute__ ((packed));
179 struct l2cap_info_rsp {
183 } __attribute__ ((packed));
186 #define L2CAP_IT_CL_MTU 0x0001
187 #define L2CAP_IT_FEAT_MASK 0x0002
190 #define L2CAP_IR_SUCCESS 0x0000
191 #define L2CAP_IR_NOTSUPP 0x0001
193 /* ----- L2CAP connections ----- */
194 struct l2cap_chan_list {
201 struct hci_conn *hcon;
213 struct timer_list info_timer;
217 struct sk_buff *rx_skb;
222 struct l2cap_chan_list chan_list;
225 #define L2CAP_INFO_CL_MTU_REQ_SENT 0x01
226 #define L2CAP_INFO_FEAT_MASK_REQ_SENT 0x02
228 /* ----- L2CAP channel and socket info ----- */
229 #define l2cap_pi(sk) ((struct l2cap_pinfo *) sk)
252 struct l2cap_conn *conn;
257 #define L2CAP_CONF_REQ_SENT 0x01
258 #define L2CAP_CONF_INPUT_DONE 0x02
259 #define L2CAP_CONF_OUTPUT_DONE 0x04
261 #define L2CAP_CONF_MAX_RETRIES 2
263 void l2cap_load(void);
265 #endif /* __L2CAP_H */