HttpDecoderConfig |
HttpDecoderConfig.clone() |
|
HttpDecoderConfig |
HttpDecoderConfig.setAllowDuplicateContentLengths(boolean allowDuplicateContentLengths) |
Set whether more than one Content-Length header is allowed.
|
HttpDecoderConfig |
HttpDecoderConfig.setAllowPartialChunks(boolean allowPartialChunks) |
Set whether chunks can be split into multiple messages, if their chunk size exceeds the size of the input buffer.
|
HttpDecoderConfig |
HttpDecoderConfig.setChunkedSupported(boolean chunkedSupported) |
Set whether Transfer-Encoding: Chunked should be supported.
|
HttpDecoderConfig |
HttpDecoderConfig.setHeadersFactory(HttpHeadersFactory headersFactory) |
|
HttpDecoderConfig |
HttpDecoderConfig.setInitialBufferSize(int initialBufferSize) |
Set the initial size of the temporary buffer used when parsing the lines of the HTTP headers.
|
HttpDecoderConfig |
HttpDecoderConfig.setMaxChunkSize(int maxChunkSize) |
Set the maximum chunk size.
|
HttpDecoderConfig |
HttpDecoderConfig.setMaxHeaderSize(int maxHeaderSize) |
Set the maximum line length of header lines.
|
HttpDecoderConfig |
HttpDecoderConfig.setMaxInitialLineLength(int maxInitialLineLength) |
Set the maximum length of the first line of the HTTP header.
|
HttpDecoderConfig |
HttpDecoderConfig.setStrictLineParsing(boolean strictLineParsing) |
The RFC 9112 specification for the HTTP protocol says that the initial start-line, and the following header
field-lines, must be separated by a Carriage Return (CR) and Line Feed (LF) octet pair, but also offers that
implementations "MAY" accept just a Line Feed octet as a separator.
|
HttpDecoderConfig |
HttpDecoderConfig.setTrailersFactory(HttpHeadersFactory trailersFactory) |
|
HttpDecoderConfig |
HttpDecoderConfig.setValidateHeaders(boolean validateHeaders) |
Set whether header validation should be enabled or not.
|