A websocket implementation for zig
0

Configure Feed

Select the types of activity you want to include in your feed.

fix proto Reader init in testing helper

default to no compression, since the testing helper is focused on
message handling at the application level.

Vanya A. Sergeev (Mar 31, 2025, 2:33 AM -0500) 6dead093 4b3ef3a1

+1 -1
+1 -1
src/testing.zig
··· 39 39 }) catch unreachable; 40 40 41 41 const reader_buf = aa.alloc(u8, 1024) catch unreachable; 42 - const reader = ws.proto.Reader.init(reader_buf, buffer_provider); 42 + const reader = ws.proto.Reader.init(reader_buf, buffer_provider, null); 43 43 44 44 return .{ 45 45 .closed = false,