add TLS integration test for sync client

This commit is contained in:
Karl Seguin
2025-03-20 11:39:50 +08:00
parent 2f362f2aa2
commit feb2046549
10 changed files with 504 additions and 143 deletions

View File

@@ -167,7 +167,7 @@ pub const Random = struct {
var seed: u64 = undefined;
std.posix.getrandom(std.mem.asBytes(&seed)) catch unreachable;
instance = std.Random.DefaultPrng.init(seed);
instance = std.Random.DefaultPrng.init(0);
// instance = std.Random.DefaultPrng.init(0);
}
return instance.?.random();
}