Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for tlsParamsOrNew (0.16 sec)

  1. pilot/pkg/networking/core/listener.go

    	if tlsDefaults == nil {
    		return
    	}
    
    	if len(tlsDefaults.EcdhCurves) > 0 {
    		tlsParamsOrNew(ctx).EcdhCurves = tlsDefaults.EcdhCurves
    	}
    	if len(tlsDefaults.CipherSuites) > 0 {
    		tlsParamsOrNew(ctx).CipherSuites = tlsDefaults.CipherSuites
    	}
    	if tlsDefaults.MinProtocolVersion != meshconfig.MeshConfig_TLSConfig_TLS_AUTO {
    		tlsParamsOrNew(ctx).TlsMinimumProtocolVersion = auth.TlsParameters_TlsProtocol(tlsDefaults.MinProtocolVersion)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top