Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ListenerProtocolAuto (0.25 sec)

  1. pilot/pkg/networking/networking.go

    	ListenerProtocolUnknown = iota
    	// ListenerProtocolTCP is a TCP listener.
    	ListenerProtocolTCP
    	// ListenerProtocolHTTP is an HTTP listener.
    	ListenerProtocolHTTP
    	// ListenerProtocolAuto enables auto protocol detection
    	ListenerProtocolAuto
    )
    
    // ModelProtocolToListenerProtocol converts from a config.Protocol to its corresponding plugin.ListenerProtocol
    func ModelProtocolToListenerProtocol(p protocol.Instance) ListenerProtocol {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 18 09:42:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/networking_test.go

    			ListenerProtocolTCP,
    		},
    		{
    			"Inbound unknown to Auto",
    			protocol.Unsupported,
    			core.TrafficDirection_INBOUND,
    			ListenerProtocolAuto,
    		},
    		{
    			"Outbound unknown to Auto",
    			protocol.Unsupported,
    			core.TrafficDirection_OUTBOUND,
    			ListenerProtocolAuto,
    		},
    		{
    			"UDP to UDP",
    			protocol.UDP,
    			core.TrafficDirection_INBOUND,
    			ListenerProtocolUnknown,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 02:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/filterchain_options.go

    		case model.MTLSPermissive:
    			return inboundPermissiveHTTPFilterChainMatchWithMxcOptions
    		default:
    			return inboundPlainTextHTTPFilterChainMatchOptions
    		}
    	case networking.ListenerProtocolAuto:
    		switch settings.Mode {
    		case model.MTLSStrict:
    			return inboundStrictFilterChainMatchOptions
    		case model.MTLSPermissive:
    			return inboundPermissiveFilterChainMatchWithMxcOptions
    		default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    ) []*filterChainOpts {
    	var rdsName string
    	if opts.port.Port == 0 {
    		rdsName = opts.bind.Primary() // use the UDS as a rds name
    	} else {
    		if listenerProtocol == istionetworking.ListenerProtocolAuto && opts.bind.Primary() != actualWildcard && opts.service != nil {
    			// For sniffed services, we have a unique listener and route just for that service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_inbound.go

    				TargetPort: mtls.Port,
    			},
    			clusterName: util.InboundPassthroughCluster,
    			passthrough: true,
    			hbone:       lb.node.IsWaypointProxy(),
    		}
    		opts := getFilterChainMatchOptions(mtls, istionetworking.ListenerProtocolAuto)
    		filterChains = append(filterChains, lb.inboundChainForOpts(cc, mtls, opts)...)
    	}
    
    	return filterChains
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top