l2cap.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:5k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /*
  2.  *
  3.  *  BlueZ - Bluetooth protocol stack for Linux
  4.  *
  5.  *  Copyright (C) 2000-2001  Qualcomm Incorporated
  6.  *  Copyright (C) 2002-2003  Maxim Krasnyansky <maxk@qualcomm.com>
  7.  *  Copyright (C) 2002-2008  Marcel Holtmann <marcel@holtmann.org>
  8.  *
  9.  *
  10.  *  This program is free software; you can redistribute it and/or modify
  11.  *  it under the terms of the GNU General Public License as published by
  12.  *  the Free Software Foundation; either version 2 of the License, or
  13.  *  (at your option) any later version.
  14.  *
  15.  *  This program is distributed in the hope that it will be useful,
  16.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  *  GNU General Public License for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License
  21.  *  along with this program; if not, write to the Free Software
  22.  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  23.  *
  24.  */
  25. #ifndef __L2CAP_H
  26. #define __L2CAP_H
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. #include <sys/socket.h>
  31. /* L2CAP defaults */
  32. #define L2CAP_DEFAULT_MTU 672
  33. #define L2CAP_DEFAULT_FLUSH_TO 0xFFFF
  34. #define L2CAP_CONN_TIMEOUT (HZ * 40)
  35. /* L2CAP socket address */
  36. struct sockaddr_l2 {
  37. sa_family_t l2_family;
  38. unsigned short l2_psm;
  39. bdaddr_t l2_bdaddr;
  40. };
  41. /* L2CAP socket options */
  42. #define L2CAP_OPTIONS 0x01
  43. struct l2cap_options {
  44. uint16_t omtu;
  45. uint16_t imtu;
  46. uint16_t flush_to;
  47. uint8_t mode;
  48. };
  49. #define L2CAP_CONNINFO 0x02
  50. struct l2cap_conninfo {
  51. uint16_t hci_handle;
  52. uint8_t dev_class[3];
  53. };
  54. #define L2CAP_LM 0x03
  55. #define L2CAP_LM_MASTER 0x0001
  56. #define L2CAP_LM_AUTH 0x0002
  57. #define L2CAP_LM_ENCRYPT 0x0004
  58. #define L2CAP_LM_TRUSTED 0x0008
  59. #define L2CAP_LM_RELIABLE 0x0010
  60. #define L2CAP_LM_SECURE 0x0020
  61. /* L2CAP command codes */
  62. #define L2CAP_COMMAND_REJ 0x01
  63. #define L2CAP_CONN_REQ 0x02
  64. #define L2CAP_CONN_RSP 0x03
  65. #define L2CAP_CONF_REQ 0x04
  66. #define L2CAP_CONF_RSP 0x05
  67. #define L2CAP_DISCONN_REQ 0x06
  68. #define L2CAP_DISCONN_RSP 0x07
  69. #define L2CAP_ECHO_REQ 0x08
  70. #define L2CAP_ECHO_RSP 0x09
  71. #define L2CAP_INFO_REQ 0x0a
  72. #define L2CAP_INFO_RSP 0x0b
  73. /* L2CAP structures */
  74. typedef struct {
  75. uint16_t len;
  76. uint16_t cid;
  77. } __attribute__ ((packed)) l2cap_hdr;
  78. #define L2CAP_HDR_SIZE 4
  79. typedef struct {
  80. uint8_t code;
  81. uint8_t ident;
  82. uint16_t len;
  83. } __attribute__ ((packed)) l2cap_cmd_hdr;
  84. #define L2CAP_CMD_HDR_SIZE 4
  85. typedef struct {
  86. uint16_t reason;
  87. } __attribute__ ((packed)) l2cap_cmd_rej;
  88. #define L2CAP_CMD_REJ_SIZE 2
  89. typedef struct {
  90. uint16_t psm;
  91. uint16_t scid;
  92. } __attribute__ ((packed)) l2cap_conn_req;
  93. #define L2CAP_CONN_REQ_SIZE 4
  94. typedef struct {
  95. uint16_t dcid;
  96. uint16_t scid;
  97. uint16_t result;
  98. uint16_t status;
  99. } __attribute__ ((packed)) l2cap_conn_rsp;
  100. #define L2CAP_CONN_RSP_SIZE 8
  101. /* connect result */
  102. #define L2CAP_CR_SUCCESS 0x0000
  103. #define L2CAP_CR_PEND 0x0001
  104. #define L2CAP_CR_BAD_PSM 0x0002
  105. #define L2CAP_CR_SEC_BLOCK 0x0003
  106. #define L2CAP_CR_NO_MEM 0x0004
  107. /* connect status */
  108. #define L2CAP_CS_NO_INFO 0x0000
  109. #define L2CAP_CS_AUTHEN_PEND 0x0001
  110. #define L2CAP_CS_AUTHOR_PEND 0x0002
  111. typedef struct {
  112. uint16_t dcid;
  113. uint16_t flags;
  114. uint8_t data[0];
  115. } __attribute__ ((packed)) l2cap_conf_req;
  116. #define L2CAP_CONF_REQ_SIZE 4
  117. typedef struct {
  118. uint16_t scid;
  119. uint16_t flags;
  120. uint16_t result;
  121. uint8_t data[0];
  122. } __attribute__ ((packed)) l2cap_conf_rsp;
  123. #define L2CAP_CONF_RSP_SIZE 6
  124. #define L2CAP_CONF_SUCCESS 0x0000
  125. #define L2CAP_CONF_UNACCEPT 0x0001
  126. #define L2CAP_CONF_REJECT 0x0002
  127. #define L2CAP_CONF_UNKNOWN 0x0003
  128. typedef struct {
  129. uint8_t type;
  130. uint8_t len;
  131. uint8_t 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_RFC 0x04
  138. #define L2CAP_CONF_RFC_MODE 0x04
  139. #define L2CAP_CONF_MAX_SIZE 22
  140. #define L2CAP_MODE_BASIC 0x00
  141. #define L2CAP_MODE_RETRANS 0x01
  142. #define L2CAP_MODE_FLOWCTL 0x02
  143. typedef struct {
  144. uint16_t dcid;
  145. uint16_t scid;
  146. } __attribute__ ((packed)) l2cap_disconn_req;
  147. #define L2CAP_DISCONN_REQ_SIZE 4
  148. typedef struct {
  149. uint16_t dcid;
  150. uint16_t scid;
  151. } __attribute__ ((packed)) l2cap_disconn_rsp;
  152. #define L2CAP_DISCONN_RSP_SIZE 4
  153. typedef struct {
  154. uint16_t type;
  155. } __attribute__ ((packed)) l2cap_info_req;
  156. #define L2CAP_INFO_REQ_SIZE 2
  157. typedef struct {
  158. uint16_t type;
  159. uint16_t result;
  160. uint8_t data[0];
  161. } __attribute__ ((packed)) l2cap_info_rsp;
  162. #define L2CAP_INFO_RSP_SIZE 4
  163. /* info type */
  164. #define L2CAP_IT_CL_MTU 0x0001
  165. #define L2CAP_IT_FEAT_MASK 0x0002
  166. /* info result */
  167. #define L2CAP_IR_SUCCESS 0x0000
  168. #define L2CAP_IR_NOTSUPP 0x0001
  169. #ifdef __cplusplus
  170. }
  171. #endif
  172. #endif /* __L2CAP_H */