hyper
hyper copied to clipboard
An HTTP library for Rust
**Is your feature request related to a problem? Please describe.** This is an issue for hyper-util which doesn't have an issues tab https://github.com/hyperium/hyper-util/pull/134 introduced a fix with the following details:...
Benchmarking tools often cause connections to be ungracefully shutdown. This makes it possible to filter these errors out. Replaces #2745
This allows feeding them into a WARC file (https://en.wikipedia.org/wiki/WARC_(file_format)). The rest of the request and response is already available as it's either the explicitly set body or the received response...
Downstream libraries should be able to easily profile requests.
On the server side, it's important to be able to clear out connections that have been idle for too long or are somehow broken. For HTTP/1, this can be done...
**Version** List the version(s) of `hyper`, and any relevant hyper dependency (such as `h2` if this is related to HTTP/2). hyper 1.6.0, hyper-util 0.1.10 **Platform** The output of `uname -a`...
The internal connection pool in the legacy client does many things, and it'd be better if it were broken up into several pieces and those made public, so people can...
**Is your feature request related to a problem? Please describe.** I need "the ability to limit the size of Request Header". Although it is possible to implement this in an...
**Version** 1.6.0 **Platform** Linux x86-64 **Description** When hyper gets a header with 0x7f in it, it generates a 400 response with no content type specified and no body. The problem...
**Is your feature request related to a problem? Please describe.** `hyper_util::client::legacy::connect::capture_connection` grants us the ability to capture the `Connected` structure after a connection has established. But we cannot tell whether...