http: add HTTP/1.1 case preservation (#15619)
1) Add new stateful header formatter extension point 2) Add preserve case formatter extension Fixes https://github.com/envoyproxy/envoy/issues/14363 Signed-off-by: Matt Klein <mklein@lyft.com> Mirrored from https://github.com/envoyproxy/envoy @ 2a4d97ce66db565d191b42cdf51f4b99edf04f12pull/624/head
parent
6d4c657377
commit
80c2b65417
6 changed files with 44 additions and 0 deletions
@ -0,0 +1,9 @@ |
||||
# DO NOT EDIT. This file is generated by tools/proto_format/proto_sync.py. |
||||
|
||||
load("@envoy_api//bazel:api_build_system.bzl", "api_proto_package") |
||||
|
||||
licenses(["notice"]) # Apache 2 |
||||
|
||||
api_proto_package( |
||||
deps = ["@com_github_cncf_udpa//udpa/annotations:pkg"], |
||||
) |
@ -0,0 +1,19 @@ |
||||
syntax = "proto3"; |
||||
|
||||
package envoy.extensions.http.header_formatters.preserve_case.v3; |
||||
|
||||
import "udpa/annotations/status.proto"; |
||||
|
||||
option java_package = "io.envoyproxy.envoy.extensions.http.header_formatters.preserve_case.v3"; |
||||
option java_outer_classname = "PreserveCaseProto"; |
||||
option java_multiple_files = true; |
||||
option (udpa.annotations.file_status).package_version_status = ACTIVE; |
||||
|
||||
// [#protodoc-title: Preserve case header formatter] |
||||
// [#extension: envoy.http.stateful_header_formatters.preserve_case] |
||||
|
||||
// Configuration for the preserve case header formatter. |
||||
// See the :ref:`header casing <config_http_conn_man_header_casing>` configuration guide for more |
||||
// information. |
||||
message PreserveCaseFormatterConfig { |
||||
} |
Loading…
Reference in new issue