/* * SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 */ #ifndef _ESP_TRANSPORT_INTERNAL_H_ #define _ESP_TRANSPORT_INTERNAL_H_ #include "esp_transport.h" #include "sys/socket.h" #include "sys/queue.h" #ifdef __cplusplus extern "C" { #endif typedef int (*get_socket_func)(esp_transport_handle_t t); typedef struct esp_foundation_transport { struct esp_transport_error_storage *error_handle; /*!< Pointer to the transport error container */ struct transport_esp_tls *transport_esp_tls; /*!< Pointer to the base transport which uses esp-tls */ } esp_foundation_transport_t; /** * Transport layer structure, which will provide functions, basic properties for transport types */ struct esp_transport_item_t { int port; char *scheme; /*!< Tag name */ void *data; /*!< Additional transport data */ connect_func _connect; /*!< Connect function of this transport */ io_read_func _read; /*!< Read */ io_func _write; /*!< Write */ trans_func _close; /*!< Close */ poll_func _poll_read; /*!< Poll and read */ poll_func _poll_write; /*!< Poll and write */ trans_func _destroy; /*!< Destroy and free transport */ connect_async_func _connect_async; /*!< non-blocking connect function of this transport */ payload_transfer_func _parent_transfer; /*!< Function returning underlying transport layer */ get_socket_func _get_socket; /*!< Function returning the transport's socket */ esp_transport_keep_alive_t *keep_alive_cfg; /*!< TCP keep-alive config */ struct esp_foundation_transport *base; /*!< Foundation transport pointer available from each transport */ STAILQ_ENTRY(esp_transport_item_t) next; }; /** * @brief Captures internal tcp connection error * * This is internally translated to esp-tls return codes of esp_err_t type, since the esp-tls * will be used as TCP transport layer * * @param[in] t The transport handle * @param[in] error Internal tcp-transport's error * */ void capture_tcp_transport_error(esp_transport_handle_t t, enum esp_tcp_transport_err_t error); /** * @brief Returns underlying socket for the supplied transport handle * * @param t Transport handle * * @return Socket file descriptor in case of success * -1 in case of error */ int esp_transport_get_socket(esp_transport_handle_t t); /** * @brief Captures the current errno * * @param[in] t The transport handle * @param[in] sock_errno Socket errno to store in internal transport structures * */ void esp_transport_capture_errno(esp_transport_handle_t t, int sock_errno); /** * @brief Creates esp-tls transport used in the foundation transport * * @return transport esp-tls handle */ struct transport_esp_tls* esp_transport_esp_tls_create(void); /** * @brief Destroys esp-tls transport used in the foundation transport * * @param[in] transport esp-tls handle */ void esp_transport_esp_tls_destroy(struct transport_esp_tls* transport_esp_tls); /** * @brief Sets error to common transport handle * * Note: This function copies the supplied error handle object to tcp_transport's internal * error handle object * * @param[in] A transport handle * */ void esp_transport_set_errors(esp_transport_handle_t t, const esp_tls_error_handle_t error_handle); #ifdef __cplusplus } #endif #endif //_ESP_TRANSPORT_INTERNAL_H_