quic: validating concurrent streams (#18717)

Signed-off-by: Alyssa Wilk <alyssar@chromium.org>

Mirrored from https://github.com/envoyproxy/envoy @ 7aa79b6cd1a3513150040b2acb4467fe77af714b
pull/626/head
data-plane-api(Azure Pipelines) 3 years ago
parent a5ea874246
commit 90935ac957
  1. 2
      envoy/config/core/v3/protocol.proto

@ -59,7 +59,7 @@ message QuicKeepAliveSettings {
message QuicProtocolOptions { message QuicProtocolOptions {
// Maximum number of streams that the client can negotiate per connection. 100 // Maximum number of streams that the client can negotiate per connection. 100
// if not specified. // if not specified.
google.protobuf.UInt32Value max_concurrent_streams = 1; google.protobuf.UInt32Value max_concurrent_streams = 1 [(validate.rules).uint32 = {gte: 1}];
// `Initial stream-level flow-control receive window // `Initial stream-level flow-control receive window
// <https://tools.ietf.org/html/draft-ietf-quic-transport-34#section-4.1>`_ size. Valid values range from // <https://tools.ietf.org/html/draft-ietf-quic-transport-34#section-4.1>`_ size. Valid values range from

Loading…
Cancel
Save