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

嵌入式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: bluez.h,v 1.4 2001/08/03 04:19:49 maxk Exp $
  22.  */
  23. #ifndef __IF_BLUEZ_H
  24. #define __IF_BLUEZ_H
  25. #include <net/sock.h>
  26. #define BLUEZ_MAX_PROTO  2
  27. /* Reserv for core and drivers use */
  28. #define BLUEZ_SKB_RESERVE 8
  29. #ifndef MIN
  30. #define MIN(a,b) ((a) < (b) ? (a) : (b))
  31. #endif
  32. /* Debugging */
  33. #ifdef BLUEZ_DEBUG
  34. #define HCI_CORE_DEBUG 1
  35. #define HCI_SOCK_DEBUG 1
  36. #define HCI_UART_DEBUG 1
  37. #define HCI_USB_DEBUG 1
  38. //#define HCI_DATA_DUMP 1
  39. #define L2CAP_DEBUG 1
  40. #endif /* BLUEZ_DEBUG */
  41. extern void bluez_dump(char *pref, __u8 *buf, int count);
  42. #define INF(fmt, arg...) printk(KERN_INFO fmt "n" , ## arg)
  43. #define DBG(fmt, arg...) printk(KERN_INFO __FUNCTION__ ": " fmt "n" , ## arg)
  44. #define ERR(fmt, arg...) printk(KERN_ERR  __FUNCTION__ ": " fmt "n" , ## arg)
  45. #ifdef HCI_DATA_DUMP
  46. #define DMP(buf, len)    bluez_dump(__FUNCTION__, buf, len)
  47. #else
  48. #define DMP(D...)
  49. #endif
  50. /* ----- Sockets ------ */
  51. struct bluez_sock_list {
  52. struct sock *head;
  53. rwlock_t     lock;
  54. };
  55. extern int  bluez_sock_register(int proto, struct net_proto_family *ops);
  56. extern int  bluez_sock_unregister(int proto);
  57. extern void bluez_sock_link(struct bluez_sock_list *l, struct sock *s);
  58. extern void bluez_sock_unlink(struct bluez_sock_list *l, struct sock *s);
  59. /* ----- SKB helpers ----- */
  60. struct bluez_skb_cb {
  61. int    incomming;
  62. };
  63. #define bluez_cb(skb) ((struct bluez_skb_cb *)(skb->cb)) 
  64. static inline struct sk_buff *bluez_skb_alloc(unsigned int len, int how)
  65. {
  66. struct sk_buff *skb;
  67. if ((skb = alloc_skb(len + BLUEZ_SKB_RESERVE, how))) {
  68. skb_reserve(skb, BLUEZ_SKB_RESERVE);
  69. bluez_cb(skb)->incomming  = 0;
  70. }
  71. return skb;
  72. }
  73. static inline struct sk_buff *bluez_skb_send_alloc(struct sock *sk, unsigned long len, 
  74.        int nb, int *err)
  75. {
  76. struct sk_buff *skb;
  77. if ((skb = sock_alloc_send_skb(sk, len + BLUEZ_SKB_RESERVE, nb, err))) {
  78. skb_reserve(skb, BLUEZ_SKB_RESERVE);
  79. bluez_cb(skb)->incomming  = 0;
  80. }
  81. return skb;
  82. }
  83. static inline int skb_frags_no(struct sk_buff *skb)
  84. {
  85. register struct sk_buff *frag = skb_shinfo(skb)->frag_list;
  86. register int n = 1;
  87. for (; frag; frag=frag->next, n++);
  88. return n;
  89. }
  90. extern int hci_core_init(void);
  91. extern int hci_core_cleanup(void);
  92. extern int hci_sock_init(void);
  93. extern int hci_sock_cleanup(void);
  94. #endif /* __IF_BLUEZ_H */