Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for buildOutboundNetworkFiltersWithSingleDestination (0.91 sec)

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

    		ConfigType: &listener.Filter_TypedConfig{TypedConfig: protoconv.MessageToAny(config)},
    	}
    	return tcpFilter
    }
    
    // buildOutboundNetworkFiltersWithSingleDestination takes a single cluster name
    // and builds a stack of network filters.
    func (lb *ListenerBuilder) buildOutboundNetworkFiltersWithSingleDestination(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/tls.go

    			destinationCIDRs = []string{destinationCIDR}
    		}
    		out = append(out, &filterChainOpts{
    			sniHosts:         sniHosts,
    			destinationCIDRs: destinationCIDRs,
    			networkFilters: lb.buildOutboundNetworkFiltersWithSingleDestination(statPrefix, clusterName, "",
    				listenPort, destinationRule, tunnelingconfig.Apply, false),
    		})
    	}
    
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway.go

    				sniHosts:             []string{clusterName},
    				applicationProtocols: allIstioMtlsALPNs,
    				tlsContext:           nil, // NO TLS context because this is passthrough
    				networkFilters: lb.buildOutboundNetworkFiltersWithSingleDestination(
    					statPrefix, clusterName, "", port, destinationRule, tunnelingconfig.Skip, false),
    			})
    
    			// Do the same, but for each subset
    			for _, subset := range destinationRule.GetSubsets() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top