quiche: make quic proof source and crypto stream pluggable (#16658)
Commit Message: make quic proof source and crypto streams extensions. Add config for default ones. If not specified in config, the default ones will be used. Risk Level: low Testing: existing tests passed Part of #2557 Co-authored-by: Dan Zhang <danzh@google.com> Mirrored from https://github.com/envoyproxy/envoy @ beb5a93b08bd0c48a2a7dd2f40ca13bcdb0ed40epull/624/head
parent
958f0f6650
commit
80d73a27ad
8 changed files with 80 additions and 3 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,17 @@ |
||||
syntax = "proto3"; |
||||
|
||||
package envoy.extensions.quic.crypto_stream.v3; |
||||
|
||||
import "udpa/annotations/status.proto"; |
||||
|
||||
option java_package = "io.envoyproxy.envoy.extensions.quic.crypto_stream.v3"; |
||||
option java_outer_classname = "CryptoStreamProto"; |
||||
option java_multiple_files = true; |
||||
option (udpa.annotations.file_status).package_version_status = ACTIVE; |
||||
|
||||
// [#protodoc-title: QUIC server crypto stream config] |
||||
// [#extension: envoy.quic.crypto_stream.server.quiche] |
||||
|
||||
// Configuration for the default QUIC server crypto stream provided by QUICHE. |
||||
message CryptoServerStreamConfig { |
||||
} |
@ -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,17 @@ |
||||
syntax = "proto3"; |
||||
|
||||
package envoy.extensions.quic.proof_source.v3; |
||||
|
||||
import "udpa/annotations/status.proto"; |
||||
|
||||
option java_package = "io.envoyproxy.envoy.extensions.quic.proof_source.v3"; |
||||
option java_outer_classname = "ProofSourceProto"; |
||||
option java_multiple_files = true; |
||||
option (udpa.annotations.file_status).package_version_status = ACTIVE; |
||||
|
||||
// [#protodoc-title: QUIC proof source config] |
||||
// [#extension: envoy.quic.proof_source.filter_chain] |
||||
|
||||
// Configuration for the default QUIC proof source. |
||||
message ProofSourceConfig { |
||||
} |
Loading…
Reference in new issue