APUE Learning Example Source Code
guowenxue
2019-06-26 157be0b0d4c7d4809cfcafc76235cc18388378c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include <errno.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <mosquitto.h>
 
static int run = -1;
 
void on_connect(struct mosquitto *mosq, void *obj, int rc)
{
    exit(1);
}
 
int main(int argc, char *argv[])
{
    int rc;
    struct mosquitto *mosq;
 
    int port = atoi(argv[1]);
 
    mosquitto_lib_init();
 
    mosq = mosquitto_new("08-ssl-connect-crt-auth", true, NULL);
    mosquitto_tls_set(mosq, "../ssl/test-fake-root-ca.crt", NULL, "../ssl/client.crt", "../ssl/client.key", NULL);
    mosquitto_connect_callback_set(mosq, on_connect);
 
    rc = mosquitto_connect(mosq, "localhost", port, 60);
 
    rc = mosquitto_loop_forever(mosq, -1, 1);
    if(rc == MOSQ_ERR_ERRNO && errno == EPROTO){
        return 0;
    }else{
        return 1;
    }
}