Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RDSHttpProxy (0.3 sec)

  1. pilot/pkg/model/listener.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package model
    
    const (
    	// RDSHttpProxy is the special name for HTTP PROXY route
    	RDSHttpProxy = "http_proxy"
    
    	// VirtualOutboundListenerName is the name for traffic capture listener
    	VirtualOutboundListenerName = "virtualOutbound"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 10 17:24:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/httproute.go

    	efw *model.EnvoyFilterWrapper,
    	efKeys []string,
    ) (*discovery.Resource, bool) {
    	listenerPort, useSniffing, err := extractListenerPort(routeName)
    	if err != nil && routeName != model.RDSHttpProxy && !strings.HasPrefix(routeName, model.UnixAddressPrefix) {
    		// TODO: This is potentially one place where envoyFilter ADD operation can be helpful if the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    	}
    	if features.HTTP10 || enableHTTP10(node.Metadata.HTTP10) {
    		httpOpts.AcceptHttp_10 = true
    	}
    
    	fcs := []*filterChainOpts{{
    		httpOpts: &httpListenerOpts{
    			rds:              model.RDSHttpProxy,
    			useRemoteAddress: false,
    			connectionManager: &hcm.HttpConnectionManager{
    				HttpProtocolOptions:        httpOpts,
    				ServerName:                 ph.ServerName,
    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