A websocket implementation for zig
0

Configure Feed

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

fix client.close() usage in readme

expects an optional code / reason.

Vanya A. Sergeev (Mar 31, 2025, 3:18 AM -0500) b5565941 4b3ef3a1

+1 -1
+1 -1
readme.md
··· 467 467 .ping => try client.writePong(message.data), 468 468 .pong => {}, 469 469 .close => { 470 - client.close(); 470 + try client.close(.{}); 471 471 break; 472 472 } 473 473 }