Merge branch 'bugfix/fix_esp_https_server_initialize_v5.0' into 'release/v5.0'

esp_https_server: Fix initializers missing in esp_https_server (backport v5.0)

See merge request espressif/esp-idf!21481
This commit is contained in:
Mahavir Jain 2022-12-08 16:00:14 +08:00
commit d4ff9f13c7

View File

@ -132,6 +132,12 @@ typedef struct httpd_ssl_config httpd_ssl_config_t;
.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 \