Skip to content
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 set initial settings #2341

Merged
merged 4 commits into from
Sep 8, 2022
Merged

HTTP/2 set initial settings #2341

merged 4 commits into from
Sep 8, 2022

Commits on Sep 3, 2022

  1. HTTP/2 set initial settings

    Motivaiton:
    There is no way to define initial values for
    [http/2 settings](https://datatracker.ietf.org/doc/html/rfc7540#section-6.5.2).
    
    Modifications:
    - Enhance H2ProtocolConfigBuilder to accept Map<Character, Integer> to
      set the initial settings values.
    - Set the default value of settings with bound max header list size
      and 1mb default initial flow control window.
    - Increase flow control quantum to 16kb because the flow control window
      is larger. This allows streams to write an entire frame per write
      operation and increases goodput on the connection.
    Scottmitch committed Sep 3, 2022
    Configuration menu
    Copy the full SHA
    c324d8a View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2022

  1. review comments

    Scottmitch committed Sep 7, 2022
    Configuration menu
    Copy the full SHA
    9fcdfae View commit details
    Browse the repository at this point in the history
  2. review comments 2

    Scottmitch committed Sep 7, 2022
    Configuration menu
    Copy the full SHA
    c636dc3 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2022

  1. review round 3

    Scottmitch committed Sep 8, 2022
    Configuration menu
    Copy the full SHA
    168cf1f View commit details
    Browse the repository at this point in the history