Files
esp-mqtt/lib/include/transport_ssl.h
2018-02-17 11:42:41 +07:00

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