6lowpan.h 847 B

1234567891011121314151617181920212223242526
  1. /*
  2. Copyright (c) 2013 Intel Corp.
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License version 2 and
  5. only version 2 as published by the Free Software Foundation.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU General Public License for more details.
  10. */
  11. #ifndef __6LOWPAN_H
  12. #define __6LOWPAN_H
  13. #include <linux/skbuff.h>
  14. #include <net/bluetooth/l2cap.h>
  15. int bt_6lowpan_recv(struct l2cap_conn *conn, struct sk_buff *skb);
  16. int bt_6lowpan_add_conn(struct l2cap_conn *conn);
  17. int bt_6lowpan_del_conn(struct l2cap_conn *conn);
  18. int bt_6lowpan_init(void);
  19. void bt_6lowpan_cleanup(void);
  20. #endif /* __6LOWPAN_H */