mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
esp_https_server: fix HTTPD_SSL_CONFIG_DEFAULT
This macro doesn't compile on C++. Order is fixed now. Signed-off-by: Jean Pierre Dudey <jeandudey@hotmail.com> Co-Authored-By: xkevin190 <kevinvelasco193@gmail.com> Merges https://github.com/espressif/esp-idf/pull/4981
This commit is contained in:
parent
a304421124
commit
22b1607405
@ -110,10 +110,10 @@ typedef struct httpd_ssl_config httpd_ssl_config_t;
|
||||
}, \
|
||||
.cacert_pem = NULL, \
|
||||
.cacert_len = 0, \
|
||||
.prvtkey_pem = NULL, \
|
||||
.prvtkey_len = 0, \
|
||||
.client_verify_cert_pem = NULL, \
|
||||
.client_verify_cert_len = 0, \
|
||||
.prvtkey_pem = NULL, \
|
||||
.prvtkey_len = 0, \
|
||||
.transport_mode = HTTPD_SSL_TRANSPORT_SECURE, \
|
||||
.port_secure = 443, \
|
||||
.port_insecure = 80, \
|
||||
|
Loading…
x
Reference in New Issue
Block a user