Behzod Mansurov

Results 6 comments of Behzod Mansurov

Hello. Can we use zig translate-c tool to autocomplete ```@cImport``` directives?

Hello. Any updates? Would be this merged by any chance? Oh. I see it uses old VSCode API Codelenses i think. I have implemented it another way with vscode.TestController.

Also, i wanted to ask. If this is an intended behaviour: ```zig test { std.debug.print("this is test_0\n", .{}); } test "second test" { std.debug.print("this is second test\n", .{}); } test...

Errors still exist for me, unfortunately. `0.11.0-dev.3312+ab37ab33c`

I think something wrong with `AES_256_GCM_SHA384`. Servers that select this cipher suite will hang with `tls.DecryptError`. If I exclude `AES_256_GCM_SHA384` from client supported cipher suites, then sites (wikipedia.org, telegram.org, and...

@trgwii Only by editing zig std for now (you can edit source of your current zig installation). You can just reorder, remove other cipher suites in https://github.com/ziglang/zig/blob/885d6968958e1cad4862ed1b6f1ea0b2d84c3845/lib/std/crypto/tls/Client.zig#L1299 Leave `AES_128_GCM_SHA256` and...