Skip to content

Commit

Permalink
Merge branch 'bugfix/fix_esp_https_server_initialize_v5.0' into 'rele…
Browse files Browse the repository at this point in the history
…ase/v5.0'

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

See merge request espressif/esp-idf!21481
  • Loading branch information
mahavirj committed Dec 8, 2022
2 parents ed663e3 + d48b085 commit d4ff9f1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions components/esp_https_server/include/esp_https_server.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit d4ff9f1

Please sign in to comment.