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/3 support #8559

Merged
merged 19 commits into from
Mar 9, 2023
Prev Previous commit
Next Next commit
checkstyle
  • Loading branch information
yawkat committed Mar 9, 2023
commit 8614d8ea3ae6a7b080bc008d7f7e9edb4373a416
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,6 @@ public int getJsonBufferMaxComponents() {
return jsonBufferMaxComponents;
}


/**
* Maximum number of buffers to keep around in JSON parsing before they should be consolidated.
* Defaults to {@value #DEFAULT_JSON_BUFFER_MAX_COMPONENTS}.
Expand Down Expand Up @@ -830,6 +829,9 @@ public void setMaxHeaderListSize(Long value) {
}
}

/**
* Configuration for the experimental HTTP/3 server.
*/
@ConfigurationProperties("http3")
@Experimental
public static final class Http3Settings {
Expand Down