You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java
+65Lines changed: 65 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1396,6 +1396,31 @@ public static class Netty {
1396
1396
*/
1397
1397
privateDurationconnectionTimeout;
1398
1398
1399
+
/**
1400
+
* The maximum chunk size that can be decoded for the HTTP request.
1401
+
*/
1402
+
privateDataSizemaxChunkSize;
1403
+
1404
+
/**
1405
+
* The maximum length that can be decoded for the HTTP request's initial line.
1406
+
*/
1407
+
privateDataSizemaxInitialLineLength;
1408
+
1409
+
/**
1410
+
* Configure whether or not to validate headers when decoding requests.
1411
+
*/
1412
+
privateBooleanvalidateHeaders;
1413
+
1414
+
/**
1415
+
* The maximum length of the content of the HTTP/2.0 clear-text upgrade request.
1416
+
*/
1417
+
privateDataSizeh2cMaxContentLength;
1418
+
1419
+
/**
1420
+
* The initial buffer size for HTTP request decoding.
1421
+
*/
1422
+
privateDataSizeinitialBufferSize;
1423
+
1399
1424
publicDurationgetConnectionTimeout() {
1400
1425
returnthis.connectionTimeout;
1401
1426
}
@@ -1404,6 +1429,46 @@ public void setConnectionTimeout(Duration connectionTimeout) {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/embedded/NettyWebServerFactoryCustomizer.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/embedded/NettyWebServerFactoryCustomizerTests.java
0 commit comments