mosquitto/test/broker/c/auth_plugin_v5_handle_message.c
Roger A. Light cf1c156765 New plugin interface
This is not specific to authentication, and allows plugins greater flexibility in what events they are interested in. It also adds message handling, and $CONTROL handling.
2020-09-22 14:49:28 +01:00

42 lines
1008 B
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <mosquitto.h>
#include <mosquitto_broker.h>
#include <mosquitto_plugin.h>
static int handle_publish(int event, void *event_data, void *user_data);
static mosquitto_plugin_id_t *plg_id;
int mosquitto_plugin_version(void)
{
return 5;
}
int mosquitto_plugin_init(mosquitto_plugin_id_t *identifier, void **user_data, struct mosquitto_opt *auth_opts, int auth_opt_count)
{
plg_id = identifier;
mosquitto_callback_register(plg_id, MOSQ_EVT_MESSAGE, handle_publish, NULL, NULL);
return MOSQ_ERR_SUCCESS;
}
int mosquitto_plugin_cleanup(void *user_data, struct mosquitto_opt *auth_opts, int auth_opt_count)
{
mosquitto_callback_unregister(plg_id, MOSQ_EVT_MESSAGE, handle_publish, NULL);
return MOSQ_ERR_SUCCESS;
}
int handle_publish(int event, void *event_data, void *user_data)
{
struct mosquitto_evt_message *ed = event_data;
mosquitto_free(ed->topic);
ed->topic = mosquitto_strdup("fixed-topic");
return MOSQ_ERR_SUCCESS;
}