mirror of
https://github.com/espressif/esp-mqtt.git
synced 2026-08-16 15:07:54 +00:00
39 lines
707 B
C
39 lines
707 B
C
/*
|
|
* This file is subject to the terms and conditions defined in
|
|
* file 'LICENSE', which is part of this source code package.
|
|
* Tuan PM <tuanpm at live dot com>
|
|
*/
|
|
#ifndef _TRANSPORT_SSL_H_
|
|
#define _TRANSPORT_SSL_H_
|
|
|
|
#include "transport.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/**
|
|
* @brief Create new SSL transport
|
|
*
|
|
* @return
|
|
* - transport
|
|
* - NULL
|
|
*/
|
|
transport_handle_t transport_ssl_init();
|
|
|
|
/**
|
|
* @brief Set SSL certification data (as PEM format)
|
|
*
|
|
* @param t ssl transport
|
|
* @param[in] data The pem data
|
|
* @param[in] len The length
|
|
*/
|
|
void transport_ssl_set_cert_data(transport_handle_t t, const char *data, int len);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|