2022-09-05 09:46:10 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2017-11-13 22:16:20 -05:00
|
|
|
|
2018-09-26 05:56:47 -04:00
|
|
|
#ifndef _ESP_TRANSPORT_TCP_H_
|
|
|
|
#define _ESP_TRANSPORT_TCP_H_
|
2017-11-13 22:16:20 -05:00
|
|
|
|
2018-09-25 04:34:04 -04:00
|
|
|
#include "esp_transport.h"
|
2021-01-19 04:49:42 -05:00
|
|
|
#include <sys/socket.h>
|
2022-09-05 09:46:10 -04:00
|
|
|
#include <net/if.h>
|
2017-11-13 22:16:20 -05:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-01-06 03:58:39 -05:00
|
|
|
/**
|
|
|
|
* @brief Set TCP keep-alive configuration
|
|
|
|
*
|
|
|
|
* @param[in] t The transport handle
|
|
|
|
* @param[in] keep_alive_cfg The keep-alive config
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void esp_transport_tcp_set_keep_alive(esp_transport_handle_t t, esp_transport_keep_alive_t *keep_alive_cfg);
|
|
|
|
|
2021-01-19 04:49:42 -05:00
|
|
|
/**
|
|
|
|
* @brief Set name of interface that socket can be binded on
|
|
|
|
* So the data can transport on this interface
|
|
|
|
*
|
|
|
|
* @param[in] t The transport handle
|
|
|
|
* @param[in] if_name The interface name
|
|
|
|
*/
|
|
|
|
void esp_transport_tcp_set_interface_name(esp_transport_handle_t t, struct ifreq *if_name);
|
|
|
|
|
2017-11-13 22:16:20 -05:00
|
|
|
/**
|
2018-09-26 05:56:47 -04:00
|
|
|
* @brief Create TCP transport, the transport handle must be release esp_transport_destroy callback
|
2017-11-13 22:16:20 -05:00
|
|
|
*
|
2018-09-26 05:56:47 -04:00
|
|
|
* @return the allocated esp_transport_handle_t, or NULL if the handle can not be allocated
|
2017-11-13 22:16:20 -05:00
|
|
|
*/
|
2019-07-16 05:33:30 -04:00
|
|
|
esp_transport_handle_t esp_transport_tcp_init(void);
|
2017-11-13 22:16:20 -05:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-09-26 05:56:47 -04:00
|
|
|
#endif /* _ESP_TRANSPORT_TCP_H_ */
|