quic: add listener config option to attach connection debug visitors (#34036)
Commit Message: Add a way to configure a quic connection debug visitor factory that will be used to attach a debug visitor to all quic connections on the listener. Adds an interface for this new type of factory. Additional Description: Risk Level: Low Testing: Added new tests and modified existing tests in /test/common/quic. Also performed manual testing on a real machine and sent traffic to it using quic_client. Docs Changes: Update envoy.config.listener.v3.quic_config.proto inline. Release Notes: N/A Platform Specific Features: N/A Signed-off-by: Will Lampert <wlampert@google.com> Mirrored from https://github.com/envoyproxy/envoy @ 0c28205942066b2b5b2ef2a344c9357f27f642c7main
parent
64decba1d9
commit
2e377fdd57
5 changed files with 35 additions and 1 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_xds//udpa/annotations:pkg"], |
||||
) |
@ -0,0 +1,18 @@ |
||||
syntax = "proto3"; |
||||
|
||||
package envoy.extensions.quic.connection_debug_visitor.v3; |
||||
|
||||
import "udpa/annotations/status.proto"; |
||||
|
||||
option java_package = "io.envoyproxy.envoy.extensions.quic.connection_debug_visitor.v3"; |
||||
option java_outer_classname = "ConnectionDebugVisitorBasicProto"; |
||||
option java_multiple_files = true; |
||||
option go_package = "github.com/envoyproxy/go-control-plane/envoy/extensions/quic/connection_debug_visitor/v3;connection_debug_visitorv3"; |
||||
option (udpa.annotations.file_status).package_version_status = ACTIVE; |
||||
|
||||
// [#protodoc-title: QUIC connection debug visitor basic config] |
||||
// [#extension: envoy.quic.connection_debug_visitor.basic] |
||||
|
||||
// Configuration for a basic QUIC connection debug visitor. |
||||
message BasicConfig { |
||||
} |
Loading…
Reference in new issue