Introduce Http2DataChunkedInput to send chunked Http2 Data Frames#12066
Merged
normanmaurer merged 8 commits intonetty:4.1from Feb 7, 2022
Merged
Introduce Http2DataChunkedInput to send chunked Http2 Data Frames#12066normanmaurer merged 8 commits intonetty:4.1from
Http2DataChunkedInput to send chunked Http2 Data Frames#12066normanmaurer merged 8 commits intonetty:4.1from
Conversation
Contributor
Author
|
@slandelle @Ech0Fan PTAL |
normanmaurer
requested changes
Feb 2, 2022
codec-http2/src/main/java/io/netty/handler/codec/http2/Http2DataChunkedInput.java
Outdated
Show resolved
Hide resolved
codec-http2/src/main/java/io/netty/handler/codec/http2/Http2DataChunkedInput.java
Outdated
Show resolved
Hide resolved
codec-http2/src/main/java/io/netty/handler/codec/http2/Http2DataChunkedInput.java
Show resolved
Hide resolved
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2DataChunkedInputTest.java
Outdated
Show resolved
Hide resolved
normanmaurer
reviewed
Feb 4, 2022
codec-http2/src/main/java/io/netty/handler/codec/http2/Http2DataChunkedInput.java
Show resolved
Hide resolved
…taChunkedInput.java Co-authored-by: Norman Maurer <norman_maurer@apple.com>
normanmaurer
requested changes
Feb 4, 2022
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2DataChunkedInputTest.java
Outdated
Show resolved
Hide resolved
…taChunkedInputTest.java Co-authored-by: Norman Maurer <norman_maurer@apple.com>
normanmaurer
approved these changes
Feb 4, 2022
raidyue
pushed a commit
to raidyue/netty
that referenced
this pull request
Jul 8, 2022
…etty#12066) Motivation: Currently, HTTP chunking is supported only in HTTP/1.X by Netty. And HTTP/2 implementation was missing. Modification: Added `Http2DataChunkedInput` to support chunked HTTP/2 Data frames. Result: Fixes netty#10801 Co-authored-by: Norman Maurer <norman_maurer@apple.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Motivation:
Currently, HTTP chunking is supported only in HTTP/1.X by Netty. And HTTP/2 implementation was missing.
Modification:
Added
Http2DataChunkedInputto support chunked HTTP/2 Data frames.Result:
Fixes #10801