Example usage for io.vertx.core.http HttpServerOptions DEFAULT_MAX_INITIAL_LINE_LENGTH

List of usage examples for io.vertx.core.http HttpServerOptions DEFAULT_MAX_INITIAL_LINE_LENGTH

Introduction

In this page you can find the example usage for io.vertx.core.http HttpServerOptions DEFAULT_MAX_INITIAL_LINE_LENGTH.

Prototype

int DEFAULT_MAX_INITIAL_LINE_LENGTH

To view the source code for io.vertx.core.http HttpServerOptions DEFAULT_MAX_INITIAL_LINE_LENGTH.

Click Source Link

Document

Default max length of the initial line (e.g.

Usage

From source file:org.apache.servicecomb.transport.rest.vertx.TransportConfig.java

License:Apache License

public static int getMaxInitialLineLength() {
    return DynamicPropertyFactory.getInstance().getIntProperty("servicecomb.rest.server.maxInitialLineLength",
            HttpServerOptions.DEFAULT_MAX_INITIAL_LINE_LENGTH).get();
}