Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for buildHTTPProxy (0.2 sec)

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

    	lb.outboundListeners = lb.buildSidecarOutboundListeners(lb.node, lb.push)
    	return lb
    }
    
    func (lb *ListenerBuilder) buildHTTPProxyListener() *ListenerBuilder {
    	httpProxy := lb.buildHTTPProxy(lb.node, lb.push)
    	if httpProxy == nil {
    		return lb
    	}
    	lb.httpProxyListener = httpProxy
    	return lb
    }
    
    func (lb *ListenerBuilder) buildVirtualOutboundListener() *ListenerBuilder {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    			FilterChainMatch: &listener.FilterChainMatch{},
    			Name:             util.PassthroughFilterChain,
    			Filters:          fallthroughNetworkFilters,
    		}
    	}
    	return l
    }
    
    func (lb *ListenerBuilder) buildHTTPProxy(node *model.Proxy,
    	push *model.PushContext,
    ) *listener.Listener {
    	httpProxyPort := push.Mesh.ProxyHttpPort // global
    	if node.Metadata.HTTPProxyPort != "" {
    		port, err := strconv.Atoi(node.Metadata.HTTPProxyPort)
    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