From 4da0cfaad56981ac5ff7ed4910bc56addeaa65f6 Mon Sep 17 00:00:00 2001 From: "data-plane-api(CircleCI)" Date: Wed, 25 Jul 2018 03:27:22 +0000 Subject: [PATCH] listener: deprecate sni_domains. (#3948) *Risk Level*: Low *Testing*: bazel test //test/... *Docs Changes*: Removed docs for "sni_domains" *Release Notes*: n/a Fixes #3718. Signed-off-by: Piotr Sikora Mirrored from https://github.com/envoyproxy/envoy @ 0621763bd00016f91e530412a9a307fca474ad69 --- envoy/api/v2/listener/listener.proto | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/envoy/api/v2/listener/listener.proto b/envoy/api/v2/listener/listener.proto index c4274733..1e8015db 100644 --- a/envoy/api/v2/listener/listener.proto +++ b/envoy/api/v2/listener/listener.proto @@ -148,20 +148,8 @@ message FilterChainMatch { // unless all connecting clients are known to use ALPN. repeated string application_protocols = 10; - // If non-empty, a list of server names (e.g. SNI for TLS protocol) to consider when determining - // a filter chain match. Those values will be compared against the server names of a new - // connection, when detected by one of the listener filters. - // - // The server name will be matched against all wildcard domains, i.e. ``www.example.com`` - // will be first matched against ``www.example.com``, then ``*.example.com``, then ``*.com``. - // - // Note that partial wildcards are not supported, and values like ``*w.example.com`` are invalid. - // - // .. attention:: - // - // Deprecated. Use :ref:`server_names ` - // instead. - repeated string sni_domains = 1 [deprecated = true]; + reserved 1; + reserved "sni_domains"; } // A filter chain wraps a set of match criteria, an option TLS context, a set of filters, and