httpd: Support user_ctx in websocket handler callback request

Closes https://github.com/espressif/esp-idf/issues/6538
This commit is contained in:
yuanjm
2021-03-04 10:33:19 +08:00
committed by bot
parent 9e4ba9a4db
commit 382fe8807d
3 changed files with 5 additions and 0 deletions

View File

@@ -722,6 +722,7 @@ static void httpd_req_cleanup(httpd_req_t *r)
ra->sd = NULL;
r->handle = NULL;
r->aux = NULL;
r->user_ctx = NULL;
}
/* Function that processes incoming TCP data and
@@ -752,6 +753,8 @@ esp_err_t httpd_req_new(struct httpd_data *hd, struct sock_db *sd)
esp_err_t ret;
#ifdef CONFIG_HTTPD_WS_SUPPORT
/* Copy user_ctx to the request */
r->user_ctx = sd->ws_user_ctx;
/* Handle WebSocket */
ESP_LOGD(TAG, LOG_FMT("New request, has WS? %s, sd->ws_handler valid? %s, sd->ws_close? %s"),
sd->ws_handshake_done ? "Yes" : "No",