quic: extends QUIC connection ID generator (#23449)
make QUIC connection ID generation an extension point with currently in-use EnvoyDeterministicConnectionIdGenerator as the default implementation. Additional Description: fix some previously unused QUICHE build targets. Risk Level: low, control plane change Testing: added new unit tests Docs Changes: docs/root/api-v3/config/quic/quic_extensions.rst Release Notes: N/A API Considerations: interface naming and documentation Signed-off-by: Dan Zhang <danzh@google.com> Mirrored from https://github.com/envoyproxy/envoy @ 02ebc03205cfae5b26ce890050b9d1b6e0c2d1f5pull/626/head
parent
dcf87698a8
commit
4b0fb00205
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_udpa//udpa/annotations:pkg"], |
||||
) |
@ -0,0 +1,18 @@ |
||||
syntax = "proto3"; |
||||
|
||||
package envoy.extensions.quic.connection_id_generator.v3; |
||||
|
||||
import "udpa/annotations/status.proto"; |
||||
|
||||
option java_package = "io.envoyproxy.envoy.extensions.quic.connection_id_generator.v3"; |
||||
option java_outer_classname = "EnvoyDeterministicConnectionIdGeneratorProto"; |
||||
option java_multiple_files = true; |
||||
option go_package = "github.com/envoyproxy/go-control-plane/envoy/extensions/quic/connection_id_generator/v3;connection_id_generatorv3"; |
||||
option (udpa.annotations.file_status).package_version_status = ACTIVE; |
||||
|
||||
// [#protodoc-title: QUIC connection ID generator config] |
||||
// [#extension: envoy.quic.deterministic_connection_id_generator] |
||||
|
||||
// Configuration for a connection ID generator implementation which issues predictable CIDs with stable first 4 bytes. |
||||
message DeterministicConnectionIdGeneratorConfig { |
||||
} |
Loading…
Reference in new issue