All Downloads are FREE. Search and download functionalities are using the official Maven repository.

reactor.netty.http.server.HttpRequestDecoderSpec Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
/*
 * Copyright (c) 2018-2021 VMware, Inc. or its affiliates, All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package reactor.netty.http.server;

import reactor.netty.http.HttpDecoderSpec;

/**
 * A configuration builder to fine tune the {@link io.netty.handler.codec.http.HttpServerCodec}
 * (or more precisely the {@link io.netty.handler.codec.http.HttpServerCodec.HttpServerRequestDecoder}) for HTTP/1.1
 * or {@link io.netty.handler.codec.http.HttpServerUpgradeHandler} for H2C.
 * 

* Defaults are accessible as constants *

* * * * * * * *
{@link #DEFAULT_ALLOW_DUPLICATE_CONTENT_LENGTHS}false
{@link #DEFAULT_H2C_MAX_CONTENT_LENGTH}0
{@link #DEFAULT_INITIAL_BUFFER_SIZE}128
{@link #DEFAULT_MAX_CHUNK_SIZE}8192
{@link #DEFAULT_MAX_HEADER_SIZE}8192
{@link #DEFAULT_MAX_INITIAL_LINE_LENGTH}4096
{@link #DEFAULT_VALIDATE_HEADERS}true
* * @author Simon Baslé * @author Violeta Georgieva */ public final class HttpRequestDecoderSpec extends HttpDecoderSpec { /** * The maximum length of the content of the HTTP/2.0 clear-text upgrade request. * By default, the server will reject an upgrade request with non-empty content, * because the upgrade request is most likely a GET request. */ public static final int DEFAULT_H2C_MAX_CONTENT_LENGTH = 0; HttpRequestDecoderSpec() { this.h2cMaxContentLength = DEFAULT_H2C_MAX_CONTENT_LENGTH; } @Override public HttpRequestDecoderSpec get() { return this; } /** * Build a {@link HttpRequestDecoderSpec}. */ HttpRequestDecoderSpec build() { HttpRequestDecoderSpec decoder = new HttpRequestDecoderSpec(); decoder.initialBufferSize = initialBufferSize; decoder.maxChunkSize = maxChunkSize; decoder.maxHeaderSize = maxHeaderSize; decoder.maxInitialLineLength = maxInitialLineLength; decoder.validateHeaders = validateHeaders; decoder.allowDuplicateContentLengths = allowDuplicateContentLengths; decoder.h2cMaxContentLength = h2cMaxContentLength; return decoder; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy