Skip to content

Commit

Permalink
Set ALPN protocols in QUIC in the same way as in HTTPS
Browse files Browse the repository at this point in the history
Signed-off-by: Lior Okman <lior.okman@sap.com>
  • Loading branch information
liorokman committed Dec 23, 2023
1 parent 4654de1 commit bd0d64e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/xds/translator/listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ func buildDownstreamQUICTransportSocket(tlsConfig *ir.TLSListenerConfig) (*corev
DownstreamTlsContext: &tlsv3.DownstreamTlsContext{
CommonTlsContext: &tlsv3.CommonTlsContext{
TlsParams: buildTLSParams(tlsConfig),
AlpnProtocols: []string{"h3"},
AlpnProtocols: buildALPNProtocols(tlsConfig.ALPNProtocols),
},
RequireClientCertificate: &wrappers.BoolValue{Value: false},
},
Expand Down

0 comments on commit bd0d64e

Please sign in to comment.