Skip to content

Commit 6ed0e40

Browse files
0x676e674JXseanmonstardswijNoah-Kennedy
authored
Merge patch (hyperium#5)
* Add a setter for header_table_size * Include a test for setting header_table_size * Fix formatting * Switch pseudo header order to mimic chrome * support chrome/okhttp impersonate * deps(http): bump version to v0.2.11 * feat(header): support safari header pseudo order * Send frames based on custom configuration * Revert "deps(http): bump version to v0.2.11" This reverts commit 7882ee95b58275200863ce15ece74983ec9c76f3. * deps(http): bump version to v0.2.11 * bump version to v0.4.2 * fix: streams awaiting capacity lockout (hyperium#730) (hyperium#734) This PR changes the the assign-capacity queue to prioritize streams that are send-ready. This is necessary to prevent a lockout when streams aren't able to proceed while waiting for connection capacity, but there is none. Closes hyperium/hyper#3338 Co-authored-by: dswij <[email protected]> * v0.3.23 * streams: limit error resets for misbehaving connections This change causes GOAWAYs to be issued to misbehaving connections which for one reason or another cause us to emit lots of error resets. Error resets are not generally expected from valid implementations anyways. The threshold after which we issue GOAWAYs is tunable, and will default to 1024. * Prepare v0.3.24 * perf: optimize header list size calculations (hyperium#750) This speeds up loading blocks in cases where we have many headers already. * bump version to v 0.4.3 * deps(http): v0.2 * Fix header order * Optimize pseudo-header sort * Setting static headers * feat(frame): Passing values ​​to solve pseudo order * Add headers priority * Fix default flag * Project rename to `h2-patch` --------- Co-authored-by: 4JX <[email protected]> Co-authored-by: Sean McArthur <[email protected]> Co-authored-by: dswij <[email protected]> Co-authored-by: Noah Kennedy <[email protected]>
1 parent 64eaf51 commit 6ed0e40

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@ name = "h2-patch"
55
# - Create git tag
66
version = "0.5.7"
77
license = "MIT"
8-
authors = [
9-
"Carl Lerche <[email protected]>",
10-
"Sean McArthur <[email protected]>",
11-
]
8+
authors = ["0x676e67 <[email protected]>"]
129
description = "An HTTP/2 client and server"
13-
documentation = "https://docs.rs/h2"
14-
repository = "https://github.com/hyperium/h2"
10+
homepage = "https://github.com/crates-patch"
11+
documentation = "https://docs.rs/h2-patch"
12+
repository = "https://github.com/crates-patch/h2-patch"
1513
readme = "README.md"
1614
keywords = ["http", "async", "non-blocking"]
1715
categories = ["asynchronous", "web-programming", "network-programming"]

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# H2
22

3+
This project is forked from [hyper](https://github.com/hyperium/hyper)
4+
35
A Tokio aware, HTTP/2 client & server implementation for Rust.
46

57
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)

0 commit comments

Comments
 (0)