11-prop-recv-qos2.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. #include <stdbool.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. #include <mosquitto.h>
  6. #include <mqtt_protocol.h>
  7. static int run = -1;
  8. static int sent_mid = -1;
  9. void on_connect(struct mosquitto *mosq, void *obj, int rc)
  10. {
  11. int rc2;
  12. mosquitto_property *proplist = NULL;
  13. if(rc){
  14. exit(1);
  15. }
  16. }
  17. void on_message_v5(struct mosquitto *mosq, void *obj, const struct mosquitto_message *msg, const mosquitto_property *properties)
  18. {
  19. int rc;
  20. char *str;
  21. if(properties){
  22. if(mosquitto_property_read_string(properties, MQTT_PROP_CONTENT_TYPE, &str, false)){
  23. rc = strcmp(str, "plain/text");
  24. free(str);
  25. if(rc == 0){
  26. if(mosquitto_property_read_string(properties, MQTT_PROP_RESPONSE_TOPIC, &str, false)){
  27. rc = strcmp(str, "msg/123");
  28. free(str);
  29. if(rc == 0){
  30. if(msg->qos == 2){
  31. mosquitto_publish(mosq, NULL, "ok", 2, "ok", 0, 0);
  32. return;
  33. }
  34. }
  35. }
  36. }
  37. }
  38. }
  39. /* No matching message, so quit with an error */
  40. exit(1);
  41. }
  42. void on_publish(struct mosquitto *mosq, void *obj, int mid)
  43. {
  44. run = 0;
  45. }
  46. int main(int argc, char *argv[])
  47. {
  48. int rc;
  49. int tmp;
  50. struct mosquitto *mosq;
  51. int port = atoi(argv[1]);
  52. mosquitto_lib_init();
  53. mosq = mosquitto_new("prop-test", true, NULL);
  54. if(mosq == NULL){
  55. return 1;
  56. }
  57. mosquitto_connect_callback_set(mosq, on_connect);
  58. mosquitto_message_v5_callback_set(mosq, on_message_v5);
  59. mosquitto_int_option(mosq, MOSQ_OPT_PROTOCOL_VERSION, MQTT_PROTOCOL_V5);
  60. rc = mosquitto_connect(mosq, "localhost", port, 60);
  61. while(run == -1){
  62. rc = mosquitto_loop(mosq, -1, 1);
  63. }
  64. mosquitto_destroy(mosq);
  65. mosquitto_lib_cleanup();
  66. return run;
  67. }