-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTTP/2: check window sizes, implement streaming #158
Merged
Merged
Commits on Oct 29, 2021
-
2
Configuration menu - View commit details
-
Copy full SHA for 016d7ea - Browse repository at this point
Copy the full SHA 016d7eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3b11fcf - Browse repository at this point
Copy the full SHA 3b11fcfView commit details
Commits on Nov 30, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 2eae2ec - Browse repository at this point
Copy the full SHA 2eae2ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for 336e638 - Browse repository at this point
Copy the full SHA 336e638View commit details -
Configuration menu - View commit details
-
Copy full SHA for c49ea5d - Browse repository at this point
Copy the full SHA c49ea5dView commit details
Commits on Dec 5, 2021
-
fix off-by-one error in byte-fitting formula
testing against the exact connection-level window size, I see on the last commit: | bytes to send | number of DATA frames | sizes of each frame | |----------------|-----------------------|---------------------| | 65_536 | 2 | 65_536, 0 | | 65_536 - 1 | 1 | 65_535 | | 65_536 + 1 | 3 | 65_535, 2, 0 | | 2 * 65_536 | 3 | 65_535, 65_537, 0 | | 2 * 65_536 - 1 | 3 | 65_535, 65_536, 0 | | 2 * 65_536 + 1 | 3 | 65_535, 65_538, 0 | this looks like the formula for how many bytes to fit when overloaded is off-by-one. after applying the change in this commit, the numbers work out perfectly: | bytes to send | number of DATA frames | sizes of each frame | |----------------|-----------------------|---------------------| | 65_536 | 2 | 65_536, 0 | | 65_536 - 1 | 1 | 65_535 | | 65_536 + 1 | 3 | 65_536, 1, 0 | | 2 * 65_536 | 3 | 65_536, 65_536, 0 | | 2 * 65_536 - 1 | 3 | 65_536, 65_535, 0 | | 2 * 65_536 + 1 | 3 | 65_536, 65_537, 0 |
Configuration menu - View commit details
-
Copy full SHA for 21d53d4 - Browse repository at this point
Copy the full SHA 21d53d4View commit details
Commits on Dec 6, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 11dd75e - Browse repository at this point
Copy the full SHA 11dd75eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 466bf4b - Browse repository at this point
Copy the full SHA 466bf4bView commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.