| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 4.4.4 source code.tar.gz | 2026-06-17 | 335.1 kB | |
| 4.4.4 source code.zip | 2026-06-17 | 410.1 kB | |
| README.md | 2026-06-17 | 907 Bytes | |
| Totals: 3 Items | 746.1 kB | 0 | |
Fixed
- HTTP/2: a connection is no longer reused after the peer sends
GOAWAYwhile keeping the socket open (as AWS ALB does to recycle connections). The connection is retired so the pool dials a fresh one, instead of being handed out again with new streams the peer ignores untilrecv_timeout. - HTTP/2: when the per-stream
recv_timeoutwatchdog fires, the stalled stream is cancelled (RST_STREAM) so the peer stops sending and the connection is not reused with an orphaned stream. - HTTP/1.1: bytes that issue [#544]'s idle
{active, once}delivers to the connection mailbox on a reused connection are now buffered and fed to the next request instead of dropping the connection (refines the 4.4.3 behavior), so a reused request no longer blocks torecv_timeoutwhile the response sits stranded as an unread message. The idle buffer is bounded, and a server close still refuses reuse (#544).