summaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2023-02-08 14:24:49 +0100
committerDaniel Stenberg <daniel@haxx.se>2023-02-10 08:28:58 +0100
commit2e2e3d16c5c77596a789f6e6a1b30be7fc17360c (patch)
treeee4d94b897e1b3381c61df7fad4c0d6a334dac98 /lib/urldata.h
parent2aed8e179f0675f5b17d75f3904ea7d905f4336a (diff)
downloadcurl-2e2e3d16c5c77596a789f6e6a1b30be7fc17360c.tar.gz
ws: fix recv of larger frames
+ remove 'oleft' from the struct + deal with "overflow data" in a separate dynbuf Reported-by: Mike Duglas Fixes #10438 Closes #10447
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 19c5ac7e3..0e2c04a04 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -1015,6 +1015,9 @@ struct connectdata {
#ifndef CURL_DISABLE_MQTT
struct mqtt_conn mqtt;
#endif
+#ifdef USE_WEBSOCKETS
+ struct ws_conn ws;
+#endif
} proto;
struct connectbundle *bundle; /* The bundle we are member of */