Files
esp-mqtt/lib/include/transport_tcp.h

25 lines
281 B
C
Raw Normal View History

2018-02-16 02:40:16 +07:00
#ifndef _TRANSPORT_TCP_H_
#define _TRANSPORT_TCP_H_
#include "transport.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Create TCP transport
*
* @return
* - transport
* - NULL
*/
transport_handle_t transport_tcp_init();
#ifdef __cplusplus
}
#endif
#endif