Zig 的 HTTP 客户端是否允许您访问套接字的文件描述符?

Does Zig's HTTP client allow you to get access to the file descriptor for the socket?

提问人:Evan Carroll 提问时间:9/19/2023 更新时间:9/19/2023 访问量:72

问:

目前尚不清楚 Zig 是否在 ?是吗?如果是这样,您如何访问它?client.request.reader()

HTTP 套接字 客户端 文件句柄 zig

评论


答:

1赞 Evan Carroll 9/19/2023 #1

来自 truemedian,

简短的回答:否

长答案:是的,如果你愿意依赖实现细节。client.connection.?.data.stream.handle

来源: https://github.com/orhun/zig-http-benchmarks/issues/16