-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
quic: adding upstream config #15537
quic: adding upstream config #15537
Conversation
Signed-off-by: Alyssa Wilk <alyssar@chromium.org>
CC @envoyproxy/api-shepherds: Your approval is needed for changes made to |
Signed-off-by: Alyssa Wilk <alyssar@chromium.org>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks LGTM just 2 small comments.
/wait
@@ -24,6 +24,12 @@ message TcpProtocolOptions { | |||
"envoy.api.v2.core.TcpProtocolOptions"; | |||
} | |||
|
|||
message QuicProtocolOptions { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe doc/comment about how these are protocol options shared between both downstream and upstream?
include/envoy/upstream/upstream.h
Outdated
/** | ||
* @return const envoy::config::core::v3::Http3ProtocolOptions& for HTTP/3 connections | ||
* created on behalf of this cluster. | ||
* @see envoy::config::core::v3::Http3ProtocolOptions. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: strange indent
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Signed-off-by: Alyssa Wilk <alyssar@chromium.org>
Alas I didn't end up moving all of the protocol options over, as the cluster has its own timeout params so most of the QuicProtocolOptions are listener-specific.
Commit Message: adding quic protocol config to quic upstream
Risk Level: n/a (quic only)
Testing: unit tests
Docs Changes: n/a
Release Notes: n/a
part of #14829