1
6
7
8
9
10
16
17
18
19
20
21
22
23
24
29
34
37
38
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
65
69
70
73
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/* ... */
#ifndef _ESP_TRANSPORT_INTERNAL_H_
#define _ESP_TRANSPORT_INTERNAL_H_
#include "sys/time.h"
#include "esp_transport.h"
#include "sys/socket.h"
#include "sys/queue.h"
#include "esp_log.h"
#include "esp_tls.h"6 includes
#ifdef __cplusplus
extern "C" {
#endif
typedef int (*get_socket_func)(esp_transport_handle_t t);
/* ... */
typedef struct esp_transport_error_storage {
struct esp_tls_last_error esp_tls_err_h_base;
int sock_errno;
}{ ... } esp_transport_error_storage;
typedef struct esp_foundation_transport {
esp_transport_error_storage *error_handle;
}{ ... } esp_foundation_transport_t;
/* ... */
struct esp_transport_item_t {
int port;
char *scheme;
void *data;
connect_func _connect;
io_read_func _read;
io_func _write;
trans_func _close;
poll_func _poll_read;
poll_func _poll_write;
trans_func _destroy;
connect_async_func _connect_async;
payload_transfer_func _parent_transfer;
get_socket_func _get_socket;
esp_transport_keep_alive_t *keep_alive_cfg;
struct esp_foundation_transport *foundation;
STAILQ_ENTRY(esp_transport_item_t) next;
}{ ... };
/* ... */
#define ESP_TRANSPORT_MEM_CHECK(TAG, a, action) if (!(a)) { \
ESP_LOGE(TAG,"%s(%d): %s", __FUNCTION__, __LINE__, "Memory exhausted"); \
action; \
}...
/* ... */
#define ESP_TRANSPORT_ERR_OK_CHECK(TAG, err, action) \
{ \
esp_err_t _esp_transport_err_to_check = err; \
if (_esp_transport_err_to_check != ESP_OK) { \
ESP_LOGE(TAG,"%s(%d): Expected ESP_OK; reported: %d", __FUNCTION__, __LINE__, _esp_transport_err_to_check); \
action; \
}{...} \
}{...}
...
/* ... */
struct timeval* esp_transport_utils_ms_to_timeval(int timeout_ms, struct timeval *tv);
/* ... */
esp_foundation_transport_t * esp_transport_init_foundation_transport(void);
void esp_transport_destroy_foundation_transport(esp_foundation_transport_t *foundation);
/* ... */
void capture_tcp_transport_error(esp_transport_handle_t t, enum esp_tcp_transport_err_t error);
/* ... */
int esp_transport_get_socket(esp_transport_handle_t t);
/* ... */
void esp_transport_capture_errno(esp_transport_handle_t t, int sock_errno);
/* ... */
void esp_transport_set_errors(esp_transport_handle_t t, const esp_tls_error_handle_t error_handle);
#ifdef __cplusplus
}{...}
#endif
/* ... */
#endif