Add support for MPTCP (multi-path TCP) for listeners (#18780)

Signed-off-by: Greg Greenway <ggreenway@apple.com>

Mirrored from https://github.com/envoyproxy/envoy @ a3ece14ce23228accf70d5d306499d0794080dab
pull/626/head
data-plane-api(Azure Pipelines) 3 years ago
parent 8c3a23b44a
commit 61688e4873
  1. 6
      envoy/config/listener/v3/listener.proto

@ -35,7 +35,7 @@ message ListenerCollection {
repeated xds.core.v3.CollectionEntry entries = 1;
}
// [#next-free-field: 30]
// [#next-free-field: 31]
message Listener {
option (udpa.annotations.versioning).previous_message_type = "envoy.api.v2.Listener";
@ -314,4 +314,8 @@ message Listener {
// [#not-implemented-hide:]
InternalListenerConfig internal_listener = 27;
}
// Enable MPTCP (multi-path TCP) on this listener. Clients will be allowed to establish
// MPTCP connections. Non-MPTCP clients will fall back to regular TCP.
bool enable_mptcp = 30;
}

Loading…
Cancel
Save