1
6
7
8
9
10
16
17
18
19
20
21
22
23
32
33
37
38
42
46
47
51
55
56
57
58
65
66
67
72
73
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
127
128
129
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/* ... */
#ifndef _ESP_HTTPS_SERVER_H_
#define _ESP_HTTPS_SERVER_H_
#include <stdbool.h>
#include "esp_err.h"
#include "esp_http_server.h"
#include "esp_tls.h"
#include "esp_event.h"5 includes
#ifdef __cplusplus
extern "C" {
#endif
ESP_EVENT_DECLARE_BASE(ESP_HTTPS_SERVER_EVENT);
typedef enum {
HTTPS_SERVER_EVENT_ERROR = 0,
HTTPS_SERVER_EVENT_START,
HTTPS_SERVER_EVENT_ON_CONNECTED,
HTTPS_SERVER_EVENT_ON_DATA,
HTTPS_SERVER_EVENT_SENT_DATA,
HTTPS_SERVER_EVENT_DISCONNECTED,
HTTPS_SERVER_EVENT_STOP,
}{ ... } esp_https_server_event_id_t;
typedef enum {
HTTPD_SSL_TRANSPORT_SECURE,
HTTPD_SSL_TRANSPORT_INSECURE
}{ ... } httpd_ssl_transport_mode_t;
/* ... */
typedef enum {
HTTPD_SSL_USER_CB_SESS_CREATE,
HTTPD_SSL_USER_CB_SESS_CLOSE
}{ ... } httpd_ssl_user_cb_state_t;
/* ... */
typedef struct esp_https_server_user_cb_arg {
httpd_ssl_user_cb_state_t user_cb_state;
esp_tls_t *tls;
}{ ... } esp_https_server_user_cb_arg_t;
typedef esp_tls_last_error_t esp_https_server_last_error_t;
/* ... */
typedef void esp_https_server_user_cb(esp_https_server_user_cb_arg_t *user_cb);
/* ... */
struct httpd_ssl_config {
/* ... */
httpd_config_t httpd;
const uint8_t *servercert;
size_t servercert_len;
const uint8_t *cacert_pem;
size_t cacert_len;
const uint8_t *prvtkey_pem;
size_t prvtkey_len;
bool use_ecdsa_peripheral;
uint8_t ecdsa_key_efuse_blk;
httpd_ssl_transport_mode_t transport_mode;
uint16_t port_secure;
uint16_t port_insecure;
bool session_tickets;
bool use_secure_element;
esp_https_server_user_cb *user_cb;
void *ssl_userdata;
/* ... */
esp_tls_handshake_callback cert_select_cb;
/* ... */
const char** alpn_protos;
}{ ... };
typedef struct httpd_ssl_config httpd_ssl_config_t;
/* ... */
#define HTTPD_SSL_CONFIG_DEFAULT() { \
.httpd = { \
.task_priority = tskIDLE_PRIORITY+5, \
.stack_size = 10240, \
.core_id = tskNO_AFFINITY, \
.task_caps = (MALLOC_CAP_INTERNAL | MALLOC_CAP_8BIT), \
.server_port = 0, \
.ctrl_port = ESP_HTTPD_DEF_CTRL_PORT+1, \
.max_open_sockets = 4, \
.max_uri_handlers = 8, \
.max_resp_headers = 8, \
.backlog_conn = 5, \
.lru_purge_enable = true, \
.recv_wait_timeout = 5, \
.send_wait_timeout = 5, \
.global_user_ctx = NULL, \
.global_user_ctx_free_fn = NULL, \
.global_transport_ctx = NULL, \
.global_transport_ctx_free_fn = NULL, \
.enable_so_linger = false, \
.linger_timeout = 0, \
.keep_alive_enable = false, \
.keep_alive_idle = 0, \
.keep_alive_interval = 0, \
.keep_alive_count = 0, \
.open_fn = NULL, \
.close_fn = NULL, \
.uri_match_fn = NULL \
}{...}, \
.servercert = NULL, \
.servercert_len = 0, \
.cacert_pem = NULL, \
.cacert_len = 0, \
.prvtkey_pem = NULL, \
.prvtkey_len = 0, \
.use_ecdsa_peripheral = false, \
.ecdsa_key_efuse_blk = 0, \
.transport_mode = HTTPD_SSL_TRANSPORT_SECURE, \
.port_secure = 443, \
.port_insecure = 80, \
.session_tickets = false, \
.use_secure_element = false, \
.user_cb = NULL, \
.ssl_userdata = NULL, \
.cert_select_cb = NULL, \
.alpn_protos = NULL, \
}{...}
/* ... */
esp_err_t httpd_ssl_start(httpd_handle_t *handle, httpd_ssl_config_t *config);
/* ... */
esp_err_t httpd_ssl_stop(httpd_handle_t handle);
#ifdef __cplusplus
}{...}
#endif
/* ... */
#endif