Fix checksum issue

This commit is contained in:
2026-01-24 10:38:52 -05:00
parent a81c4b3175
commit 157afa13b1
3 changed files with 22 additions and 1 deletions

View File

@@ -100,7 +100,9 @@ pub fn main(init: std.process.Init) !void {
if (flags.connect != null) {
reconnect: while (true) {
log.debug("Starting connection", .{});
var connection = try client.connect(init.io, flags.connect.?);
log.debug("Connection started", .{});
while (true) {
var res_buf: [2048]u8 = undefined;
@@ -156,6 +158,7 @@ fn parseDest(in: ?[]const u8) [4]u8 {
const builtin = @import("builtin");
const std = @import("std");
const log = std.log;
const ArrayList = std.ArrayList;
const StaticStringMap = std.StaticStringMap;