From 180e729eb8d7e359bd8672730f9d4eb2f5464543 Mon Sep 17 00:00:00 2001 From: "data-plane-api(CircleCI)" Date: Mon, 26 Nov 2018 15:56:24 +0000 Subject: [PATCH] Proxy metadata in responses (#5021) Description: Allow envoy to proxy metadata in responses. Risk Level: Low. Not used. Testing: Integration test. (Unit tests will be added with filters) Docs Changes: inline Release Notes: n/a Part of #2394 Signed-off-by: Yang Song Mirrored from https://github.com/envoyproxy/envoy @ b6ff832b9159fad4aef3e93d6243753f9427494c --- envoy/api/v2/core/protocol.proto | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/envoy/api/v2/core/protocol.proto b/envoy/api/v2/core/protocol.proto index 10e735a5..7399beda 100644 --- a/envoy/api/v2/core/protocol.proto +++ b/envoy/api/v2/core/protocol.proto @@ -79,6 +79,14 @@ message Http2ProtocolOptions { // Allows proxying Websocket and other upgrades over H2 connect. bool allow_connect = 5; + + // [#not-implemented-hide:] Hiding until envoy has full metadata support. + // Still under implementation. DO NOT USE. + // + // Allows metadata. See [metadata + // docs](https://github.com/envoyproxy/envoy/blob/master/source/docs/h2_metadata.md) for more + // information. + bool allow_metadata = 6; } // [#not-implemented-hide:]