l2cap.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

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.5 2001/06/14 21:28:26 maxk Exp $
  22.  */
  23. #ifndef __L2CAP_H
  24. #define __L2CAP_H
  25. #include <asm/types.h>
  26. #include <asm/byteorder.h>
  27. /* L2CAP defaults */
  28. #define L2CAP_DEFAULT_MTU  672
  29. #define L2CAP_DEFAULT_FLUSH_TO 0xFFFF
  30. #define L2CAP_CONN_TIMEOUT  (HZ * 40)
  31. #define L2CAP_DISCONN_TIMEOUT  (HZ * 2)
  32. #define L2CAP_CONN_IDLE_TIMEOUT (HZ * 60)
  33. /* L2CAP socket address */
  34. struct sockaddr_l2 {
  35. sa_family_t l2_family;
  36. unsigned short l2_psm;
  37. bdaddr_t l2_bdaddr;
  38. };
  39. /* set/get sockopt defines */
  40. #define L2CAP_OPTIONS  0x01
  41. struct l2cap_options {
  42. __u16 omtu;
  43. __u16 imtu;
  44. __u16 flush_to;
  45. __u32 token_rate;
  46. __u32 bucket_size;
  47. __u32 pick_band;
  48. __u32 latency;
  49. __u32 delay_var;
  50. };
  51. #define L2CAP_CONNINFO  0x02
  52. struct l2cap_conninfo {
  53. __u16 hci_handle;
  54. };
  55. /* L2CAP command codes */
  56. #define L2CAP_COMMAND_REJ 0x01
  57. #define L2CAP_CONN_REQ    0x02
  58. #define L2CAP_CONN_RSP    0x03
  59. #define L2CAP_CONF_REQ    0x04
  60. #define L2CAP_CONF_RSP    0x05
  61. #define L2CAP_DISCONN_REQ 0x06
  62. #define L2CAP_DISCONN_RSP 0x07
  63. #define L2CAP_ECHO_REQ    0x08
  64. #define L2CAP_ECHO_RSP    0x09
  65. #define L2CAP_INFO_REQ    0x0a
  66. #define L2CAP_INFO_RSP    0x0b
  67. /* L2CAP structures */
  68. typedef struct {
  69. __u16      len;
  70. __u16      cid;
  71. } __attribute__ ((packed))  l2cap_hdr;
  72. #define L2CAP_HDR_SIZE 4
  73. typedef struct {
  74. __u8       code;
  75. __u8       ident;
  76. __u16      len;
  77. } __attribute__ ((packed)) l2cap_cmd_hdr;
  78. #define L2CAP_CMD_HDR_SIZE 4
  79. typedef struct {
  80. __u16      reason;
  81. } __attribute__ ((packed)) l2cap_cmd_rej;
  82. #define L2CAP_CMD_REJ_SIZE 2
  83. typedef struct {
  84. __u16      psm;
  85. __u16      scid;
  86. } __attribute__ ((packed)) l2cap_conn_req;
  87. #define L2CAP_CONN_REQ_SIZE 4
  88. typedef struct {
  89. __u16      dcid;
  90. __u16      scid;
  91. __u16      result;
  92. __u16      status;
  93. } __attribute__ ((packed)) l2cap_conn_rsp;
  94. #define L2CAP_CONN_RSP_SIZE 8
  95. #define L2CAP_CONN_SUCCESS    0x0000
  96. #define L2CAP_CONN_PEND       0x0001
  97. #define L2CAP_CONN_BAD_PSM    0x0002
  98. #define L2CAP_CONN_SEC_BLOCK  0x0003
  99. #define L2CAP_CONN_NO_MEM     0x0004
  100. typedef struct {
  101. __u16      dcid;
  102. __u16      flags;
  103. __u8       data[0];
  104. } __attribute__ ((packed)) l2cap_conf_req;
  105. #define L2CAP_CONF_REQ_SIZE 4
  106. typedef struct {
  107. __u16      scid;
  108. __u16      flags;
  109. __u16      result;
  110. __u8       data[0];
  111. } __attribute__ ((packed)) l2cap_conf_rsp;
  112. #define L2CAP_CONF_RSP_SIZE    6
  113. #define L2CAP_CONF_SUCCESS 0x00
  114. #define L2CAP_CONF_UNACCEPT 0x01
  115. typedef struct {
  116. __u8       type;
  117. __u8       len;
  118. __u8       val[0];
  119. } __attribute__ ((packed)) l2cap_conf_opt;
  120. #define L2CAP_CONF_OPT_SIZE 2
  121. #define L2CAP_CONF_MTU 0x01
  122. #define L2CAP_CONF_FLUSH_TO 0x02
  123. #define L2CAP_CONF_QOS 0x03
  124. typedef struct {
  125. __u16      dcid;
  126. __u16      scid;
  127. } __attribute__ ((packed))  l2cap_disconn_req;
  128. #define L2CAP_DISCONN_REQ_SIZE 4
  129. typedef struct {
  130. __u16      dcid;
  131. __u16      scid;
  132. } __attribute__ ((packed))  l2cap_disconn_rsp;
  133. #define L2CAP_DISCONN_RSP_SIZE 4
  134. #endif /* __L2CAP_H */