mirror of
https://github.com/espressif/esp-mqtt.git
synced 2025-11-15 23:09:38 +01:00
25 lines
281 B
C
25 lines
281 B
C
|
|
#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
|