aboutsummaryrefslogtreecommitdiff
path: root/src/http/websocket_http_client.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/http/websocket_http_client.zig')
-rw-r--r--src/http/websocket_http_client.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http/websocket_http_client.zig b/src/http/websocket_http_client.zig
index ac6d605bd..f0cdc2e54 100644
--- a/src/http/websocket_http_client.zig
+++ b/src/http/websocket_http_client.zig
@@ -149,6 +149,7 @@ pub fn NewHTTPUpgradeClient(comptime ssl: bool) type {
Socket.configure(
ctx,
+ false,
HTTPClient,
struct {
pub const onOpen = handleOpen;
@@ -793,6 +794,7 @@ pub fn NewWebSocketClient(comptime ssl: bool) type {
Socket.configure(
ctx,
+ false,
WebSocket,
struct {
pub const onClose = handleClose;