mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-04-15 18:49:54 +02:00
96 lines
1.8 KiB
C++
96 lines
1.8 KiB
C++
#include <signal.h>
|
|
#include <mosquitto/libmosquittopp.h>
|
|
#include <openssl/ssl.h>
|
|
#include "path_helper.h"
|
|
|
|
|
|
static int run = -1;
|
|
|
|
|
|
void handle_sigint(int signal)
|
|
{
|
|
(void)signal;
|
|
run = 0;
|
|
}
|
|
|
|
class mosquittopp_test : public mosqpp::mosquittopp
|
|
{
|
|
public:
|
|
mosquittopp_test(const char *id);
|
|
|
|
void on_connect(int rc);
|
|
void on_disconnect(int rc);
|
|
};
|
|
|
|
mosquittopp_test::mosquittopp_test(const char *id) : mosqpp::mosquittopp(id)
|
|
{
|
|
}
|
|
|
|
|
|
void mosquittopp_test::on_connect(int rc)
|
|
{
|
|
if(rc){
|
|
exit(1);
|
|
}else{
|
|
disconnect();
|
|
}
|
|
}
|
|
|
|
|
|
void mosquittopp_test::on_disconnect(int rc)
|
|
{
|
|
run = rc;
|
|
}
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
mosquittopp_test *mosq;
|
|
SSL_CTX *ssl_ctx;
|
|
if(argc != 2){
|
|
return 1;
|
|
}
|
|
int port = atoi(argv[1]);
|
|
|
|
mosqpp::lib_init();
|
|
|
|
OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS \
|
|
| OPENSSL_INIT_ADD_ALL_DIGESTS \
|
|
| OPENSSL_INIT_LOAD_CONFIG, NULL);
|
|
ssl_ctx = SSL_CTX_new(TLS_client_method());
|
|
|
|
char cafile[4096];
|
|
cat_sourcedir_with_relpath(cafile, "/../../ssl/test-root-ca.crt");
|
|
char capath[4096];
|
|
cat_sourcedir_with_relpath(capath, "/../../ssl/certs");
|
|
char certfile[4096];
|
|
cat_sourcedir_with_relpath(certfile, "/../../ssl/client.crt");
|
|
char keyfile[4096];
|
|
cat_sourcedir_with_relpath(keyfile, "/../../ssl/client.key");
|
|
|
|
SSL_CTX_set_verify(ssl_ctx, SSL_VERIFY_PEER, NULL);
|
|
SSL_CTX_use_certificate_chain_file(ssl_ctx, certfile);
|
|
SSL_CTX_use_PrivateKey_file(ssl_ctx, keyfile, SSL_FILETYPE_PEM);
|
|
SSL_CTX_load_verify_locations(ssl_ctx, cafile, capath);
|
|
|
|
mosq = new mosquittopp_test("08-ssl-connect-crt-auth");
|
|
|
|
mosq->tls_set(cafile, NULL, certfile, keyfile);
|
|
|
|
mosq->int_option(MOSQ_OPT_SSL_CTX_WITH_DEFAULTS, 0);
|
|
mosq->void_option(MOSQ_OPT_SSL_CTX, ssl_ctx);
|
|
|
|
mosq->connect("localhost", port, 60);
|
|
|
|
signal(SIGINT, handle_sigint);
|
|
while(run == -1){
|
|
mosq->loop();
|
|
}
|
|
SSL_CTX_free(ssl_ctx);
|
|
|
|
delete mosq;
|
|
mosqpp::lib_cleanup();
|
|
|
|
return run;
|
|
}
|