-
-
Notifications
You must be signed in to change notification settings - Fork 344
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: hyperium/h2
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.16
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: hyperium/h2
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.17
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 7 commits
- 16 files changed
- 3 contributors
Commits on Feb 28, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 45b9bcc - Browse repository at this point
Copy the full SHA 45b9bccView commit details
Commits on Apr 12, 2023
-
Configuration menu - View commit details
-
Copy full SHA for d3d50ef - Browse repository at this point
Copy the full SHA d3d50efView commit details -
Configuration menu - View commit details
-
Copy full SHA for 481c31d - Browse repository at this point
Copy the full SHA 481c31dView commit details
Commits on Apr 13, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 8088ca6 - Browse repository at this point
Copy the full SHA 8088ca6View commit details -
fix: limit the amount of pending-accept reset streams
Streams that have been received by the peer, but not accepted by the user, can also receive a RST_STREAM. This is a legitimate pattern: one could send a request and then shortly after, realize it is not needed, sending a CANCEL. However, since those streams are now "closed", they don't count towards the max concurrent streams. So, they will sit in the accept queue, using memory. In most cases, the user is calling `accept` in a loop, and they can accept requests that have been reset fast enough that this isn't an issue in practice. But if the peer is able to flood the network faster than the server accept loop can run (simply accepting, not processing requests; that tends to happen in a separate task), the memory could grow. So, this introduces a maximum count for streams in the pending-accept but remotely-reset state. If the maximum is reached, a GOAWAY frame with the error code of ENHANCE_YOUR_CALM is sent, and the connection marks itself as errored. ref CVE-2023-26964 ref GHSA-f8vr-r385-rh5r Closes hyperium/hyper#2877
Configuration menu - View commit details
-
Copy full SHA for 5bc8e72 - Browse repository at this point
Copy the full SHA 5bc8e72View commit details -
feat: add
max_pending_accept_reset_streams(n)optionsThe new option is available to both client and server `Builder`s.
Configuration menu - View commit details
-
Copy full SHA for d3f37e9 - Browse repository at this point
Copy the full SHA d3f37e9View commit details -
Configuration menu - View commit details
-
Copy full SHA for af4bcac - Browse repository at this point
Copy the full SHA af4bcacView commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v0.3.16...v0.3.17