l2cap.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 
  2.    BlueZ - Bluetooth protocol stack for Linux
  3.    Copyright (C) 2000-2001 Qualcomm Incorporated
  4.    Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
  5.    This program is free software; you can redistribute it and/or modify
  6.    it under the terms of the GNU General Public License version 2 as
  7.    published by the Free Software Foundation;
  8.    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  9.    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  10.    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
  11.    IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
  12.    CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES 
  13.    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 
  14.    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 
  15.    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16.    ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, 
  17.    COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS 
  18.    SOFTWARE IS DISCLAIMED.
  19. */
  20. /*
  21.  *  $Id: l2cap.h,v 1.1.1.1 2002/03/08 21:03:15 maxk Exp $
  22.  */
  23. #ifndef __L2CAP_H
  24. #define __L2CAP_H
  25. /* L2CAP defaults */
  26. #define L2CAP_DEFAULT_MTU  672
  27. #define L2CAP_DEFAULT_FLUSH_TO 0xFFFF
  28. #define L2CAP_CONN_TIMEOUT  (HZ * 40)
  29. /* L2CAP socket address */
  30. struct sockaddr_l2 {
  31. sa_family_t l2_family;
  32. unsigned short l2_psm;
  33. bdaddr_t l2_bdaddr;
  34. };
  35. /* Socket options */
  36. #define L2CAP_OPTIONS 0x01
  37. struct l2cap_options {
  38. __u16 omtu;
  39. __u16 imtu;
  40. __u16 flush_to;
  41. };
  42. #define L2CAP_CONNINFO  0x02
  43. struct l2cap_conninfo {
  44. __u16 hci_handle;
  45. };
  46. #define L2CAP_LM 0x03
  47. #define L2CAP_LM_MASTER 0x0001
  48. #define L2CAP_LM_AUTH 0x0002
  49. #define L2CAP_LM_ENCRYPT 0x0004
  50. #define L2CAP_LM_TRUSTED 0x0008
  51. #define L2CAP_QOS 0x04
  52. struct l2cap_qos {
  53. __u16 service_type;
  54. __u32 token_rate;
  55. __u32 token_bucket_size;
  56. __u32 peak_bandwidth;
  57. __u32 latency;
  58. __u32 delay_variation;
  59. };
  60. #define L2CAP_SERV_NO_TRAFFIC 0x00
  61. #define L2CAP_SERV_BEST_EFFORT 0x01
  62. #define L2CAP_SERV_GUARANTEED 0x02
  63. /* L2CAP command codes */
  64. #define L2CAP_COMMAND_REJ 0x01
  65. #define L2CAP_CONN_REQ    0x02
  66. #define L2CAP_CONN_RSP    0x03
  67. #define L2CAP_CONF_REQ    0x04
  68. #define L2CAP_CONF_RSP    0x05
  69. #define L2CAP_DISCONN_REQ 0x06
  70. #define L2CAP_DISCONN_RSP 0x07
  71. #define L2CAP_ECHO_REQ    0x08
  72. #define L2CAP_ECHO_RSP    0x09
  73. #define L2CAP_INFO_REQ    0x0a
  74. #define L2CAP_INFO_RSP    0x0b
  75. /* L2CAP structures */
  76. typedef struct {
  77. __u16      len;
  78. __u16      cid;
  79. } __attribute__ ((packed))  l2cap_hdr;
  80. #define L2CAP_HDR_SIZE 4
  81. typedef struct {
  82. __u8       code;
  83. __u8       ident;
  84. __u16      len;
  85. } __attribute__ ((packed)) l2cap_cmd_hdr;
  86. #define L2CAP_CMD_HDR_SIZE 4
  87. typedef struct {
  88. __u16      reason;
  89. } __attribute__ ((packed)) l2cap_cmd_rej;
  90. #define L2CAP_CMD_REJ_SIZE 2
  91. typedef struct {
  92. __u16      psm;
  93. __u16      scid;
  94. } __attribute__ ((packed)) l2cap_conn_req;
  95. #define L2CAP_CONN_REQ_SIZE 4
  96. typedef struct {
  97. __u16      dcid;
  98. __u16      scid;
  99. __u16      result;
  100. __u16      status;
  101. } __attribute__ ((packed)) l2cap_conn_rsp;
  102. #define L2CAP_CONN_RSP_SIZE 8
  103. /* connect result */
  104. #define L2CAP_CR_SUCCESS    0x0000
  105. #define L2CAP_CR_PEND       0x0001
  106. #define L2CAP_CR_BAD_PSM    0x0002
  107. #define L2CAP_CR_SEC_BLOCK  0x0003
  108. #define L2CAP_CR_NO_MEM     0x0004
  109. /* connect status */
  110. #define L2CAP_CS_NO_INFO      0x0000
  111. #define L2CAP_CS_AUTHEN_PEND  0x0001
  112. #define L2CAP_CS_AUTHOR_PEND  0x0002
  113. typedef struct {
  114. __u16      dcid;
  115. __u16      flags;
  116. __u8       data[0];
  117. } __attribute__ ((packed)) l2cap_conf_req;
  118. #define L2CAP_CONF_REQ_SIZE 4
  119. typedef struct {
  120. __u16      scid;
  121. __u16      flags;
  122. __u16      result;
  123. __u8       data[0];
  124. } __attribute__ ((packed)) l2cap_conf_rsp;
  125. #define L2CAP_CONF_RSP_SIZE    6
  126. #define L2CAP_CONF_SUCCESS 0x00
  127. #define L2CAP_CONF_UNACCEPT 0x01
  128. typedef struct {
  129. __u8       type;
  130. __u8       len;
  131. __u8       val[0];
  132. } __attribute__ ((packed)) l2cap_conf_opt;
  133. #define L2CAP_CONF_OPT_SIZE 2
  134. #define L2CAP_CONF_MTU 0x01
  135. #define L2CAP_CONF_FLUSH_TO 0x02
  136. #define L2CAP_CONF_QOS 0x03
  137. #define L2CAP_CONF_MAX_SIZE 22
  138. typedef struct {
  139. __u16      dcid;
  140. __u16      scid;
  141. } __attribute__ ((packed))  l2cap_disconn_req;
  142. #define L2CAP_DISCONN_REQ_SIZE 4
  143. typedef struct {
  144. __u16      dcid;
  145. __u16      scid;
  146. } __attribute__ ((packed))  l2cap_disconn_rsp;
  147. #define L2CAP_DISCONN_RSP_SIZE 4
  148. typedef struct {
  149. __u16       type;
  150. __u8        data[0];
  151. } __attribute__ ((packed)) l2cap_info_req;
  152. #define L2CAP_INFO_REQ_SIZE 2
  153. typedef struct {
  154. __u16       type;
  155. __u16       result;
  156. __u8        data[0];
  157. } __attribute__ ((packed)) l2cap_info_rsp;
  158. #define L2CAP_INFO_RSP_SIZE 4
  159. /* ----- L2CAP connections ----- */
  160. struct l2cap_chan_list {
  161. struct sock *head;
  162. rwlock_t lock;
  163. long num;
  164. };
  165. struct l2cap_conn {
  166. struct hci_conn *hcon;
  167. bdaddr_t  *dst;
  168. bdaddr_t  *src;
  169. unsigned int    mtu;
  170. spinlock_t lock;
  171. struct sk_buff *rx_skb;
  172. __u32 rx_len;
  173. __u8 rx_ident;
  174. __u8 tx_ident;
  175. struct l2cap_chan_list chan_list;
  176. };
  177. /* ----- L2CAP channel and socket info ----- */
  178. #define l2cap_pi(sk)   ((struct l2cap_pinfo *) &sk->tp_pinfo)
  179. struct l2cap_pinfo {
  180. __u16 psm;
  181. __u16 dcid;
  182. __u16 scid;
  183. __u16 imtu;
  184. __u16 omtu;
  185. __u16 flush_to;
  186. __u32 link_mode;
  187. __u8 conf_state;
  188. __u16 conf_mtu;
  189. __u8 ident;
  190. struct l2cap_conn  *conn;
  191. struct sock  *next_c;
  192. struct sock  *prev_c;
  193. };
  194. #define CONF_REQ_SENT    0x01
  195. #define CONF_INPUT_DONE  0x02
  196. #define CONF_OUTPUT_DONE 0x04
  197. #endif /* __L2CAP_H */