From 930c00c25988a65882fb9b120af66f08cb93e78b Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Tue, 18 Apr 2023 15:02:34 +0200 Subject: Websocket en-/decoding - state is fully kept at connection, since curl_ws_send() and curl_ws_rec() have lifetime beyond usual transfers - no more limit on frame sizes Reported-by: simplerobot on github Fixes #10962 Closes #10999 --- lib/urldata.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/urldata.h') diff --git a/lib/urldata.h b/lib/urldata.h index 9aea44278..d93ee9706 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -1030,7 +1030,7 @@ struct connectdata { struct mqtt_conn mqtt; #endif #ifdef USE_WEBSOCKETS - struct ws_conn ws; + struct websocket *ws; #endif } proto; -- cgit v1.2.1