feat: implement 'T' packet

This commit is contained in:
Rekai Nyangadzayi Musuka 2024-03-05 23:14:32 -06:00
parent 309851ab06
commit 3670bebbc4
1 changed files with 1 additions and 0 deletions

View File

@ -207,6 +207,7 @@ pub fn parse(self: *Self, allocator: Allocator, state: *Server.State, emu: *Emul
log.warn("Unimplemented: {s}", .{self.contents});
return .{ .static = "" };
},
'T' => return .{ .static = "OK " }, // We assume single threaded here
'q' => {
if (self.contents[1] == 'C' and self.contents.len == 2) return .{ .static = "QC1" };