mosquitto/test/lib/c/01-will-set.c

30 lines
584 B
C
Raw Normal View History

2014-05-07 22:27:00 +00:00
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <mosquitto.h>
static int run = -1;
int main(int argc, char *argv[])
{
int rc;
struct mosquitto *mosq;
int port = atoi(argv[1]);
2014-05-07 22:27:00 +00:00
mosquitto_lib_init();
mosq = mosquitto_new("01-will-set", true, NULL);
mosquitto_will_set(mosq, "topic/on/unexpected/disconnect", strlen("will message"), "will message", 1, true);
rc = mosquitto_connect(mosq, "localhost", port, 60);
2014-05-07 22:27:00 +00:00
while(run == -1){
mosquitto_loop(mosq, -1, 1);
}
2020-08-12 10:01:28 +00:00
mosquitto_destroy(mosq);
2014-05-07 22:27:00 +00:00
mosquitto_lib_cleanup();
return run;
}