|
|
@ -59,6 +59,12 @@ message HttpProtocolOptions { |
|
|
|
// maximum number of request headers allowed is 100. Requests that exceed this limit will receive |
|
|
|
// maximum number of request headers allowed is 100. Requests that exceed this limit will receive |
|
|
|
// a 431 response for HTTP/1.x and cause a stream reset for HTTP/2. |
|
|
|
// a 431 response for HTTP/1.x and cause a stream reset for HTTP/2. |
|
|
|
google.protobuf.UInt32Value max_headers_count = 2 [(validate.rules).uint32 = {gte: 1}]; |
|
|
|
google.protobuf.UInt32Value max_headers_count = 2 [(validate.rules).uint32 = {gte: 1}]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Total duration to keep alive an HTTP request/response stream. If the time limit is reached the stream will be |
|
|
|
|
|
|
|
// reset independent of any other timeouts. If not specified, this value is not set. |
|
|
|
|
|
|
|
// The current implementation implements this timeout on downstream connections only. |
|
|
|
|
|
|
|
// [#comment:TODO(shikugawa): add this functionality to upstream.] |
|
|
|
|
|
|
|
google.protobuf.Duration max_stream_duration = 4; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// [#next-free-field: 6] |
|
|
|
// [#next-free-field: 6] |
|
|
|