Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newDNSProtocol (1.66 sec)

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

    	e := newExecutor()
    	protocolMap := make(map[scheme.Instance]protocol)
    	h := add(newHTTPProtocol(e))
    	protocolMap[scheme.HTTP] = h
    	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))
    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/dns.go

    	"net/url"
    	"strings"
    	"time"
    
    	"istio.io/istio/pkg/test/echo"
    	"istio.io/istio/pkg/test/echo/proto"
    )
    
    var _ protocol = &dnsProtocol{}
    
    type dnsProtocol struct {
    	e *executor
    }
    
    func newDNSProtocol(e *executor) protocol {
    	return &dnsProtocol{e: e}
    }
    
    func (c *dnsProtocol) 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: Tue May 10 18:09:08 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top