esp_https_server.h: Remove const identifier for esp_tls pointer

This commit is contained in:
Aditya Patwardhan
2022-04-30 11:26:01 +05:30
committed by BOT
parent 788c9ddf8d
commit 5b15c91ae4

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;
/**