diff options
author | Ville Tervo <ville.tervo@nokia.com> | 2011-02-10 20:38:49 -0500 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-02-16 14:32:55 -0500 |
commit | acd7d3708555b3da7522e23c183cc21efc785f72 (patch) | |
tree | 41a15cea1207308c26c344a2bc585175be432fae /include/net/bluetooth | |
parent | 6ed58ec520ad2b2fe3f955c8a5fd0eecafccebdf (diff) |
Bluetooth: Add LE connection support to L2CAP
Add basic LE connection support to L2CAP. LE
connection can be created by specifying cid
in struct sockaddr_l2
Signed-off-by: Ville Tervo <ville.tervo@nokia.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include/net/bluetooth')
-rw-r--r-- | include/net/bluetooth/l2cap.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h index 9fb87fe1aec3..cd7a64250e3c 100644 --- a/include/net/bluetooth/l2cap.h +++ b/include/net/bluetooth/l2cap.h | |||
@@ -160,6 +160,9 @@ struct l2cap_conn_rsp { | |||
160 | /* channel indentifier */ | 160 | /* channel indentifier */ |
161 | #define L2CAP_CID_SIGNALING 0x0001 | 161 | #define L2CAP_CID_SIGNALING 0x0001 |
162 | #define L2CAP_CID_CONN_LESS 0x0002 | 162 | #define L2CAP_CID_CONN_LESS 0x0002 |
163 | #define L2CAP_CID_LE_DATA 0x0004 | ||
164 | #define L2CAP_CID_LE_SIGNALING 0x0005 | ||
165 | #define L2CAP_CID_SMP 0x0006 | ||
163 | #define L2CAP_CID_DYN_START 0x0040 | 166 | #define L2CAP_CID_DYN_START 0x0040 |
164 | #define L2CAP_CID_DYN_END 0xffff | 167 | #define L2CAP_CID_DYN_END 0xffff |
165 | 168 | ||