Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tapResponseChannel (0.32 sec)

  1. pkg/istio-agent/xds_proxy.go

    	xdsHeaders           map[string]string
    	xdsUdsPath           string
    	proxyAddresses       []string
    	ia                   *Agent
    
    	httpTapServer      *http.Server
    	tapMutex           sync.RWMutex
    	tapResponseChannel chan *discovery.DiscoveryResponse
    
    	// connected stores the active gRPC stream. The proxy will only have 1 connection at a time
    	connected                 *ProxyConnection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy_delta.go

    	p.initialDeltaHealthRequest = req
    	p.connectedMutex.Unlock()
    }
    
    func (p *XdsProxy) forwardDeltaToTap(resp *discovery.DeltaDiscoveryResponse) {
    	select {
    	// Convert back to a SotW response
    	case p.tapResponseChannel <- &discovery.DiscoveryResponse{
    		VersionInfo:  resp.SystemVersionInfo,
    		Resources:    slices.Map(resp.Resources, (*discovery.Resource).GetResource),
    		Canary:       false,
    		TypeUrl:      resp.TypeUrl,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top