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/03-publish-b2c-qos2-unexpec...

52 lines
802 B
C

#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <mosquitto.h>
static int run = -1;
static void on_connect(struct mosquitto *mosq, void *obj, int rc)
{
(void)mosq;
(void)obj;
if(rc){
printf("Connect error: %d\n", rc);
exit(1);
}
}
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("publish-qos2-test", true, &run);
if(mosq == NULL){
return 1;
}
mosquitto_connect_callback_set(mosq, on_connect);
rc = mosquitto_connect(mosq, "localhost", port, 5);
if(rc != MOSQ_ERR_SUCCESS) return rc;
while(run == -1){
rc = mosquitto_loop(mosq, 300, 1);
if(rc){
exit(0);
}
}
mosquitto_lib_cleanup();
return 0;
}