Thomvanoorschot/xevzocket
This repository contains a basic, non-blocking WebSocket client written in the Zig programming language. It leverages the xev event loop for asynchron...
This project implements a basic, non-blocking WebSocket client in the Zig programming language. It leverages the xev
library for asynchronous I/O operations, providing a foundation for building applications that require real-time communication over WebSockets. The development process emphasizes learning Zig's features and low-level networking concepts.
xev
event loop library.xev
usage in Zig.xev
for non-blocking network I/O.FramePool
to reuse memory allocations for WebSocket frames.Developing this client provides hands-on experience with:
xev
).(Instructions for building, integrating, and using the client library will be added as development progresses.)
Example Usage (Conceptual):
const client = try Client.init(allocator, loop, server_address, myReadCallback);
try client.start();
// Later, once connected...
try client.write("Hello, WebSocket Server!");
fn myReadCallback(payload: []const u8) {
std.debug.print("Received message: {s}\n", .{payload});
}
🚧 Functional / Early Development - The client can connect, perform the handshake, send/receive text messages, and handle basic Ping/Pong/Close control frames.
Current Limitations: