mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-09-27 14:22:34 +08:00
68 lines
1.1 KiB
C
68 lines
1.1 KiB
C
#include "path_helper.h"
|
|
#include <errno.h>
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <mosquitto.h>
|
|
|
|
static int run = -1;
|
|
|
|
|
|
static void on_connect(struct mosquitto *mosq, void *obj, int rc)
|
|
{
|
|
(void)obj;
|
|
|
|
if(rc){
|
|
exit(1);
|
|
}else{
|
|
mosquitto_disconnect(mosq);
|
|
}
|
|
}
|
|
|
|
|
|
static void on_disconnect(struct mosquitto *mosq, void *obj, int rc)
|
|
{
|
|
(void)mosq;
|
|
(void)obj;
|
|
|
|
run = rc;
|
|
}
|
|
|
|
|
|
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("08-ssl-connect-no-auth", true, NULL);
|
|
if(mosq == NULL){
|
|
return 1;
|
|
}
|
|
char cafile[4096];
|
|
cat_sourcedir_with_relpath(cafile, "/../../ssl/test-root-ca.crt");
|
|
mosquitto_tls_set(mosq, cafile, NULL, NULL, NULL, NULL);
|
|
mosquitto_connect_callback_set(mosq, on_connect);
|
|
mosquitto_disconnect_callback_set(mosq, on_disconnect);
|
|
|
|
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;
|
|
}
|