esp-idf/components/esp_https_server
Aditya Patwardhan a0d73b5155 fix(esp_https_server): Convert HTTPD_SSL_CONFIG_DEFAULT MACRO to function
Previously with HTTPD_SSL_CONFIG_DEFAULT being a MACRO, the
    configuration options could not be applied to it. This was casuing
    error in multiple scenarios. For e.g., here user_cert_cb is a part
    of httpd_ssl_config_t which this macro defines. But the type of
    user_cert_cb (esp_tls_server_callback_t) is only available when it is enabled
    in esp-tls. The MACRO however cannot be modified to set the defaults
    based on configuration option. This fix solves the issue without
    breaking the compatibility
2023-10-26 09:30:13 +00:00
..
include fix(esp_https_server): Convert HTTPD_SSL_CONFIG_DEFAULT MACRO to function 2023-10-26 09:30:13 +00:00
src fix(esp_https_server): Convert HTTPD_SSL_CONFIG_DEFAULT MACRO to function 2023-10-26 09:30:13 +00:00
CMakeLists.txt fix(esp_https_server): Remove dependency on CONFIG_ESP_TLS_SERVER 2023-10-26 09:30:13 +00:00
Kconfig fix(esp_https_server): Remove dependency on CONFIG_ESP_TLS_SERVER 2023-10-26 09:30:13 +00:00