hyper
hyper copied to clipboard
An HTTP library for Rust
I had partially written an endpoint to handle incoming file data, but I hadn't yet written the file-handling code yet. When testing the endpoint, Firefox kept saying that the "connection...
As mentioned in https://github.com/hyperium/hyper/pull/2675#issuecomment-1666309018, the timeout didn't apply if no bytes were written yet. This moves the start of the timeout's polling before the check for an empty buffer.
**Version** current git master **Platform** Linux (any really) **Description** I'm using hyper with curl. When we do multiple transfers with curl it tries to reuse a connection used in a...
http crate PR - https://github.com/hyperium/http/pull/617
closes #3285
I'm trying to use hyper-util and hyper on esp32s3 but I have these errors, can anyone help me? error[E0599]: no method named `with_interval` found for struct `TcpKeepalive` in the current...
**Version** ``` hyper = { version = "1.1.0", features = ["full"] } tokio = { version = "1", features = ["full"] } http-body-util = "0.1" hyper-util = { version =...
**Version** All **Platform** All platforms except Linux-like ones; Android, Linux, and Fuschia. **Description** IPv6 requires scope ids. These are closely related to interfaces. Mostly synonymous. The API for setting the...
**Version** hyper 0.14.28 tokio 1.35.0 tokio-openssl 0.6.3 **Description** Observing memory increase for "Incomplete Message error". **testing secario:** 1. server: on http1 request, simply doing connection close. **server.go:** ``` package main...
**Version** 1.3.1 **Platform** Ubuntu 23.10 **Description** I am using hyper-util `auto` server. I return an error from service. Instead of sending GOAWAY and closing connection hyper sends RST_STREAM. I looked...