mqtt.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #ifndef HEADER_CURL_MQTT_H
  2. #define HEADER_CURL_MQTT_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) Björn Stenberg, <bjorn@haxx.se>
  11. *
  12. * This software is licensed as described in the file COPYING, which
  13. * you should have received as part of this distribution. The terms
  14. * are also available at https://curl.se/docs/copyright.html.
  15. *
  16. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  17. * copies of the Software, and permit persons to whom the Software is
  18. * furnished to do so, under the terms of the COPYING file.
  19. *
  20. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  21. * KIND, either express or implied.
  22. *
  23. * SPDX-License-Identifier: curl
  24. *
  25. ***************************************************************************/
  26. #ifndef CURL_DISABLE_MQTT
  27. extern const struct Curl_handler Curl_handler_mqtt;
  28. #endif
  29. enum mqttstate {
  30. MQTT_FIRST, /* 0 */
  31. MQTT_REMAINING_LENGTH, /* 1 */
  32. MQTT_CONNACK, /* 2 */
  33. MQTT_SUBACK, /* 3 */
  34. MQTT_SUBACK_COMING, /* 4 - the SUBACK remainder */
  35. MQTT_PUBWAIT, /* 5 - wait for publish */
  36. MQTT_PUB_REMAIN, /* 6 - wait for the remainder of the publish */
  37. MQTT_NOSTATE /* 7 - never used an actual state */
  38. };
  39. struct mqtt_conn {
  40. enum mqttstate state;
  41. enum mqttstate nextstate; /* switch to this after remaining length is
  42. done */
  43. unsigned int packetid;
  44. };
  45. /* protocol-specific transfer-related data */
  46. struct MQTT {
  47. char *sendleftovers;
  48. size_t nsend; /* size of sendleftovers */
  49. /* when receiving */
  50. size_t npacket; /* byte counter */
  51. unsigned char firstbyte;
  52. size_t remaining_length;
  53. struct dynbuf recvbuf;
  54. unsigned char pkt_hd[4]; /* for decoding the arriving packet length */
  55. };
  56. #endif /* HEADER_CURL_MQTT_H */