diff options
author | Stefan Eissing <stefan@eissing.org> | 2023-04-18 15:02:34 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2023-04-25 23:16:51 +0200 |
commit | 930c00c25988a65882fb9b120af66f08cb93e78b (patch) | |
tree | 9bdf200c91288eee8f6a00e48927b552e84c72fc /lib/urldata.h | |
parent | 3f0b81c112ebfe826ed702a2987cc5e32082a7a6 (diff) | |
download | curl-930c00c25988a65882fb9b120af66f08cb93e78b.tar.gz |
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
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |