tls: allow renegotiation when acting as a client. (#3551)

Signed-off-by: Piotr Sikora <piotrsikora@google.com>

Mirrored from https://github.com/envoyproxy/envoy @ f4972084c06ef4e8f657bd4a405d93d5de92f1f4
pull/620/head
data-plane-api(CircleCI) 7 years ago
parent 3588aec27a
commit 11eb82729e
  1. 7
      envoy/api/v2/auth/cert.proto

@ -268,6 +268,13 @@ message UpstreamTlsContext {
// SNI string to use when creating TLS backend connections.
string sni = 2 [(validate.rules).string.max_bytes = 255];
// If true, server-initiated TLS renegotiation will be allowed.
//
// .. attention::
//
// TLS renegotiation is considered insecure and shouldn't be used unless absolutely necessary.
bool allow_renegotiation = 3;
}
message DownstreamTlsContext {

Loading…
Cancel
Save