Merge branch 'fix/make_esp_tls_t_private' into 'master'

Make esp_tls_t as private structure

Closes IDF-2812

See merge request espressif/esp-idf!17812
This commit is contained in:
Mahavir Jain
2022-05-12 14:47:42 +08:00
21 changed files with 288 additions and 112 deletions

View File

@@ -36,7 +36,7 @@ typedef enum {
*/
typedef struct esp_https_server_user_cb_arg {
httpd_ssl_user_cb_state_t user_cb_state;
const esp_tls_t *tls;
esp_tls_t *tls;
} esp_https_server_user_cb_arg_t;
/**