plugin_control.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <mqtt_protocol.h>
  4. #include <mosquitto.h>
  5. #include <mosquitto_broker.h>
  6. #include <mosquitto_plugin.h>
  7. static mosquitto_plugin_id_t *plg_id = NULL;
  8. int control_callback(int event, void *event_data, void *userdata)
  9. {
  10. struct mosquitto_evt_control *ed = event_data;
  11. mosquitto_broker_publish_copy(NULL, ed->topic, ed->payloadlen, ed->payload, 0, 0, NULL);
  12. return 0;
  13. }
  14. int mosquitto_plugin_version(int supported_version_count, const int *supported_versions)
  15. {
  16. return MOSQ_PLUGIN_VERSION;
  17. }
  18. int mosquitto_plugin_init(mosquitto_plugin_id_t *identifier, void **user_data, struct mosquitto_opt *auth_opts, int auth_opt_count)
  19. {
  20. int i;
  21. char buf[100];
  22. plg_id = identifier;
  23. for(i=0; i<100; i++){
  24. snprintf(buf, sizeof(buf), "$CONTROL/user-management/v%d", i);
  25. mosquitto_callback_register(plg_id, MOSQ_EVT_CONTROL, control_callback, "$CONTROL/user-management/v1", NULL);
  26. }
  27. return MOSQ_ERR_SUCCESS;
  28. }
  29. int mosquitto_plugin_cleanup(void *user_data, struct mosquitto_opt *auth_opts, int auth_opt_count)
  30. {
  31. int i;
  32. char buf[100];
  33. for(i=0; i<100; i++){
  34. snprintf(buf, sizeof(buf), "$CONTROL/user-management/v%d", i);
  35. mosquitto_callback_unregister(plg_id, MOSQ_EVT_CONTROL, control_callback, "$CONTROL/user-management/v1");
  36. }
  37. return MOSQ_ERR_SUCCESS;
  38. }