Uses of Class
io.netty.handler.codec.http.HttpDecoderConfig
-
Packages that use HttpDecoderConfig Package Description io.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty.handler.codec.rtsp An RTSP extension based on the HTTP codec. -
-
Uses of HttpDecoderConfig in io.netty.handler.codec.http
Methods in io.netty.handler.codec.http that return HttpDecoderConfig Modifier and Type Method Description HttpDecoderConfigHttpDecoderConfig. clone()HttpDecoderConfigHttpDecoderConfig. setAllowDuplicateContentLengths(boolean allowDuplicateContentLengths)Set whether more than oneContent-Lengthheader is allowed.HttpDecoderConfigHttpDecoderConfig. setAllowPartialChunks(boolean allowPartialChunks)Set whether chunks can be split into multiple messages, if their chunk size exceeds the size of the input buffer.HttpDecoderConfigHttpDecoderConfig. setChunkedSupported(boolean chunkedSupported)Set whetherTransfer-Encoding: Chunkedshould be supported.HttpDecoderConfigHttpDecoderConfig. setHeadersFactory(HttpHeadersFactory headersFactory)Set theHttpHeadersFactoryto use when creating new HTTP headers objects.HttpDecoderConfigHttpDecoderConfig. setInitialBufferSize(int initialBufferSize)Set the initial size of the temporary buffer used when parsing the lines of the HTTP headers.HttpDecoderConfigHttpDecoderConfig. setMaxChunkSize(int maxChunkSize)Set the maximum chunk size.HttpDecoderConfigHttpDecoderConfig. setMaxHeaderSize(int maxHeaderSize)Set the maximum line length of header lines.HttpDecoderConfigHttpDecoderConfig. setMaxInitialLineLength(int maxInitialLineLength)Set the maximum length of the first line of the HTTP header.HttpDecoderConfigHttpDecoderConfig. setTrailersFactory(HttpHeadersFactory trailersFactory)Set theHttpHeadersFactoryused to create HTTP trailers.HttpDecoderConfigHttpDecoderConfig. setValidateHeaders(boolean validateHeaders)Set whether header validation should be enabled or not.Constructors in io.netty.handler.codec.http with parameters of type HttpDecoderConfig Constructor Description HttpClientCodec(HttpDecoderConfig config, boolean parseHttpAfterConnectRequest, boolean failOnMissingResponse)Creates a new instance with the specified decoder options.HttpObjectDecoder(HttpDecoderConfig config)Creates a new instance with the specified configuration.HttpRequestDecoder(HttpDecoderConfig config)Creates a new instance with the specified configuration.HttpResponseDecoder(HttpDecoderConfig config)Creates a new instance with the specified configuration.HttpServerCodec(HttpDecoderConfig config)Creates a new instance with the specified decoder configuration. -
Uses of HttpDecoderConfig in io.netty.handler.codec.rtsp
Constructors in io.netty.handler.codec.rtsp with parameters of type HttpDecoderConfig Constructor Description RtspDecoder(HttpDecoderConfig config)Creates a new instance with the specified configuration.
-