transaction_completed: ignore if parsing not complete

This commit is contained in:
Andy Green 2017-06-28 09:58:44 +08:00
parent 47da96664f
commit bd23a401f6

View file

@ -1801,7 +1801,12 @@ lws_http_transaction_completed(struct lws *wsi)
lws_access_log(wsi);
lwsl_info("%s: wsi %p\n", __func__, wsi);
if (!wsi->hdr_parsing_completed) {
lwsl_notice("%s: ignoring, ah parsing incomplete\n", __func__);
return 0;
}
lwsl_notice("%s: wsi %p\n", __func__, wsi);
/* if we can't go back to accept new headers, drop the connection */
if (wsi->u.http.connection_type != HTTP_CONNECTION_KEEP_ALIVE) {
lwsl_info("%s: %p: close connection\n", __func__, wsi);