mirror of
https://github.com/eclipse/mosquitto.git
synced 2025-05-09 01:01:11 +08:00
50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <mosquitto.h>
|
|
|
|
static int run = -1;
|
|
|
|
void on_connect(struct mosquitto *mosq, void *obj, int rc, int flags, const mosquitto_property *properties)
|
|
{
|
|
if(rc){
|
|
exit(1);
|
|
}
|
|
mosquitto_publish_v5(mosq, NULL, "topic", strlen("rejected"), "rejected", 2, false, NULL);
|
|
mosquitto_publish_v5(mosq, NULL, "topic", strlen("accepted"), "accepted", 2, false, NULL);
|
|
}
|
|
|
|
void on_publish(struct mosquitto *mosq, void *obj, int mid, int reason_code, const mosquitto_property *properties)
|
|
{
|
|
if(mid == 2){
|
|
run = 0;
|
|
}
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int rc;
|
|
struct mosquitto *mosq;
|
|
mosquitto_property *props = NULL;
|
|
|
|
int port = atoi(argv[1]);
|
|
|
|
mosquitto_lib_init();
|
|
|
|
mosq = mosquitto_new("publish-qos2-test", true, &run);
|
|
mosquitto_int_option(mosq, MOSQ_OPT_PROTOCOL_VERSION, MQTT_PROTOCOL_V5);
|
|
|
|
mosquitto_connect_v5_callback_set(mosq, on_connect);
|
|
mosquitto_publish_v5_callback_set(mosq, on_publish);
|
|
|
|
rc = mosquitto_connect_bind_v5(mosq, "localhost", port, 60, NULL, NULL);
|
|
|
|
while(run == -1){
|
|
mosquitto_loop(mosq, 100, 1);
|
|
}
|
|
|
|
mosquitto_lib_cleanup();
|
|
return run;
|
|
}
|