truemedian
truemedian
Hzzp does not currently support parsing trailing headers on chunked messages. This is part of the HTTP/1.1 and should be parsed. ### Todo - [ ] Figure out how the...
I've been looking into maintaining the AUR packages for lit, luvit and luvi. However, the zip archives obtained by downloading and return a different zip every time they're run. This...
This is the first step in allowing simple cross compilation for luv and luvi via zig. This code needs to be compared against the respective Makefiles and CMakeLists before this...
* device_path_protocol now uses extern structs with align(1) fields because the transition to integer backed packed struct broke alignment * added comptime asserts that device_path_protocol structs do not violate alignment...
Calling os.write() on a peer-closed socket without the `MSG_NOSIGNAL` flag triggers a SIGPIPE, rather than return an EPIPE errno.
Currently std.http.Client assumes that the Location header is a well formed URI. However that is not actually how it should be parsed according to the spec. https://www.rfc-editor.org/rfc/rfc9110.html#section-10.2.2 Location is a...
This adds the missing documentation for most of the previously undocumented functions, alongside a few example usages in certain scenarios. This also removes the allocator parameter from Server and Server.init...
This should solve #18291. This required adapting resolvePosix for Uri into its own function. This also has the benefit of never returning relative paths, which used to be possible.
Works around a bug in luajit that seems to happen when passing a number to `bit.bor` that is larger than 2^31-1 Additionally adds a few missing enumerations so that enableAll...
Allows passing a coroutine in place of a callback in all methods using uv_req_t. The coroutine will be yielded and then resumed using the synchronous argument list [not the (err,...