Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for protocolToMTLSAlpn (0.24 sec)

  1. pilot/pkg/simulation/traffic.go

    		c.TLS = Plaintext
    	}
    	if c.Address == "" {
    		// pick a random address, assumption is the test does not care
    		c.Address = "1.3.3.7"
    	}
    	if c.TLS == MTLS && c.Alpn == "" {
    		c.Alpn = protocolToMTLSAlpn(c.Protocol)
    	}
    	if c.TLS == TLS && c.Alpn == "" {
    		c.Alpn = protocolToTLSAlpn(c.Protocol)
    	}
    	return c
    }
    
    type Result struct {
    	Error              error
    	ListenerMatched    string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top