Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newTLSProtocol (0.45 sec)

  1. pkg/test/echo/server/forwarder/instance.go

    	protocolMap[scheme.HTTPS] = h
    	protocolMap[scheme.DNS] = add(newDNSProtocol(e))
    	protocolMap[scheme.GRPC] = add(newGRPCProtocol(e))
    	protocolMap[scheme.WebSocket] = add(newWebsocketProtocol(e))
    	protocolMap[scheme.TLS] = add(newTLSProtocol(e))
    	protocolMap[scheme.XDS] = add(newXDSProtocol(e))
    	protocolMap[scheme.TCP] = add(newTCPProtocol(e))
    	protocolMap[scheme.UDP] = add(newUDPProtocol(e))
    
    	return &Instance{
    		e:           e,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 17:19:22 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. pkg/test/echo/server/forwarder/tls.go

    	"time"
    
    	"istio.io/istio/pkg/hbone"
    	"istio.io/istio/pkg/test/echo"
    	"istio.io/istio/pkg/test/echo/proto"
    )
    
    var _ protocol = &tlsProtocol{}
    
    type tlsProtocol struct {
    	e *executor
    }
    
    func newTLSProtocol(e *executor) protocol {
    	return &tlsProtocol{e: e}
    }
    
    func (c *tlsProtocol) ForwardEcho(ctx context.Context, cfg *Config) (*proto.ForwardEchoResponse, error) {
    	return doForward(ctx, cfg, c.e, c.makeRequest)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top