You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mosquitto/test/lib/c/04-retain-qos0.c

62 lines
1.0 KiB
C

#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <mosquitto.h>
#define UNUSED(A) (void)(A)
static int run = -1;
static void on_connect(struct mosquitto *mosq, void *obj, int rc)
{
UNUSED(obj);
if(rc){
exit(1);
}else{
mosquitto_publish(mosq, NULL, "retain/qos0/test", strlen("retained message"), "retained message", 0, true);
}
}
static void on_publish(struct mosquitto *mosq, void *obj, int mid)
{
UNUSED(mosq);
UNUSED(obj);
UNUSED(mid);
run = 0;
}
int main(int argc, char *argv[])
{
int rc;
struct mosquitto *mosq;
int port;
if(argc < 2){
return 1;
}
port = atoi(argv[1]);
mosquitto_lib_init();
mosq = mosquitto_new("retain-qos0-test", true, NULL);
if(mosq == NULL){
return 1;
}
mosquitto_connect_callback_set(mosq, on_connect);
mosquitto_publish_callback_set(mosq, on_publish);
rc = mosquitto_connect(mosq, "localhost", port, 60);
if(rc != MOSQ_ERR_SUCCESS) return rc;
while(run == -1){
mosquitto_loop(mosq, -1, 1);
}
mosquitto_destroy(mosq);
mosquitto_lib_cleanup();
return run;
}