From c9b1cbfa35f1486e6c091123e595959c0b748233 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Fri, 9 Jan 2026 23:49:10 -0500 Subject: starting minimizing the number of queue puts --- src/Server/message.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Server/message.zig') diff --git a/src/Server/message.zig b/src/Server/message.zig index 8005453..0b02892 100644 --- a/src/Server/message.zig +++ b/src/Server/message.zig @@ -120,7 +120,7 @@ pub const Message = union(enum) { } }; pub const HPub = struct { - header_bytes: usize, + header_bytes: []const u8, @"pub": Pub, pub fn deinit(self: HPub, alloc: Allocator) void { @@ -136,7 +136,7 @@ pub const Message = union(enum) { }; pub const HMsg = struct { - header_bytes: usize, + header_bytes: []const u8, msg: Msg, pub fn deinit(self: HMsg, alloc: Allocator) void { -- cgit