diff options
| author | Robby Zambito <contact@robbyzambito.me> | 2026-01-09 23:49:10 -0500 |
|---|---|---|
| committer | Robby Zambito <contact@robbyzambito.me> | 2026-01-10 09:21:18 -0500 |
| commit | c9b1cbfa35f1486e6c091123e595959c0b748233 (patch) | |
| tree | d855156f2458d75b73492bfdd6a99d498dd7bcdf /src/Server/message.zig | |
| parent | 78b23ee59c6df29b043df565111f54afd963a61c (diff) | |
starting minimizing the number of queue putspush-zvnkkqszuxxp
Diffstat (limited to 'src/Server/message.zig')
| -rw-r--r-- | src/Server/message.zig | 4 |
1 files changed, 2 insertions, 2 deletions
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 { |
