cmtp.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. *
  3. * BlueZ - Bluetooth protocol stack for Linux
  4. *
  5. * Copyright (C) 2002-2010 Marcel Holtmann <marcel@holtmann.org>
  6. *
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  21. *
  22. */
  23. #ifndef __CMTP_H
  24. #define __CMTP_H
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. /* CMTP defaults */
  29. #define CMTP_MINIMUM_MTU 152
  30. #define CMTP_DEFAULT_MTU 672
  31. /* CMTP ioctl defines */
  32. #define CMTPCONNADD _IOW('C', 200, int)
  33. #define CMTPCONNDEL _IOW('C', 201, int)
  34. #define CMTPGETCONNLIST _IOR('C', 210, int)
  35. #define CMTPGETCONNINFO _IOR('C', 211, int)
  36. #define CMTP_LOOPBACK 0
  37. struct cmtp_connadd_req {
  38. int sock; /* Connected socket */
  39. uint32_t flags;
  40. };
  41. struct cmtp_conndel_req {
  42. bdaddr_t bdaddr;
  43. uint32_t flags;
  44. };
  45. struct cmtp_conninfo {
  46. bdaddr_t bdaddr;
  47. uint32_t flags;
  48. uint16_t state;
  49. int num;
  50. };
  51. struct cmtp_connlist_req {
  52. uint32_t cnum;
  53. struct cmtp_conninfo *ci;
  54. };
  55. #ifdef __cplusplus
  56. }
  57. #endif
  58. #endif /* __CMTP_H */