hyper icon indicating copy to clipboard operation
hyper copied to clipboard

An HTTP library for Rust

Results 302 hyper issues
Sort by recently updated
recently updated
newest added

**Version** Hyper 1.3 **Platform** ``` 6.8.7-arch1-1 #1 SMP PREEMPT_DYNAMIC Wed, 17 Apr 2024 15:20:28 +0000 x86_64 GNU/Linux ``` **Description** We are seeing a few issues around using H2 CONNECT. Our...

C-bug
E-medium
A-http2

**Version** ``` hyper v0.14.28 tokio v1.26.0 (*) ``` More complete tree ``` hyper v0.14.28 ├── bytes v1.1.0 ├── futures-channel v0.3.30 (*) ├── futures-core v0.3.30 ├── futures-util v0.3.30 (*) ├── h2...

C-bug

**Version** hyper: 1.3.1 hyper-util 0.1.3 bytes: 1.6.0 tokio: 1.37,0 **Platform** Linux LAPTOP-CSN0P74T 5.15.146.1-microsoft-standard-WSL2 **Summary** For a project I'm building I wanted to provide serialization of some internal structures and send...

C-bug
B-upstream

**Is your feature request related to a problem? Please describe.** We are dealing with an issue where pooled http2 connections are hanging due max streams limits. This is problematic for...

C-feature

I have come to the need of implementing `hyper::rt::Read` on a custom struct. It seems to me that its documentation has been copy-pasted from tokio's `AsyncRead`, except it's outdated since...

E-easy
A-docs
A-rt

Building hyper-util with the `tokio` feature for wasm fails ```bash cargo build --package hyper-util --target wasm32-unknown-unknown --features tokio ``` This is a shame because the code that makes it fail...

C-bug

There is a desire to be able to put a limit on the maximum size of the connection pool. There is already a `pool_max_idle_per_host`, but this proposes a max over...

A-client
C-feature
E-medium

**Version** Latest hyper (1.3.1) & hyper-util (0.1.3) **Platform** Windows11 **Description** The issue reproduces in a modified hyper-util client example: ``` use std::env; use http_body_util::Empty; use hyper::Request; use hyper_util::client::legacy::{connect::HttpConnector, Client}; #[tokio::main(flavor...

C-bug

**Version** hyper = 1.2.0 hyper-util = 0.1.3 **Description** When using: `hyper_util::server::conn::auto::Builder::new(..).serve_connection_with_upgrades` the io stream is wrapped with [`Rewind`](https://github.com/hyperium/hyper-util/blob/master/src/server/conn/auto.rs#L240) which is private and therefore cannot be used to call [Upgraded::downcast](https://docs.rs/hyper/latest/hyper/upgrade/struct.Upgraded.html#method.downcast). To...

C-bug
K-hyper-util

According to RFC 9110, section 7.2, the Host header should only comprise the URI host and an optional port. Currently, the examples set the Host header to the URI's authority...