lua-http icon indicating copy to clipboard operation
lua-http copied to clipboard

HTTP Library for Lua. Supports HTTP(S) 1.0, 1.1 and 2.0; client and server.

Results 63 lua-http issues
Sort by recently updated
recently updated
newest added

I've found that there are some easy mistakes you can make when using lua-http as a client which give error messages that are not very clear. The documentation does not...

problem: h2_stream validate_header reject valid trailers cause: for response headers, validate_header ignores the `nth_header` parameter, and checked the pseudo-header `:status`, even for response trailers. fix: only check for `:status` on...

From the RFC: [8.1.2.1](https://datatracker.ietf.org/doc/html/rfc7540#section-8.1.2.1). Pseudo-Header Fields > Pseudo-header fields MUST NOT appear in trailers. This is properly handled for request headers, by checking the nth_header parameter in validate_header, however the...