Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TrafficDirection (0.25 sec)

  1. istioctl/pkg/writer/envoy/configdump/cluster.go

    )
    
    // ClusterFilter is used to pass filter information into cluster based config writer print functions
    type ClusterFilter struct {
    	FQDN      host.Name
    	Port      int
    	Subset    string
    	Direction model.TrafficDirection
    }
    
    // Verify returns true if the passed cluster matches the filter fields
    func (c *ClusterFilter) Verify(cluster *cluster.Cluster) bool {
    	name := cluster.Name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 05:38:17 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/networking_test.go

    	"istio.io/istio/pkg/config/protocol"
    )
    
    func TestModelProtocolToListenerProtocol(t *testing.T) {
    	tests := []struct {
    		name      string
    		protocol  protocol.Instance
    		direction core.TrafficDirection
    		want      ListenerProtocol
    	}{
    		{
    			"TCP to TCP",
    			protocol.TCP,
    			core.TrafficDirection_INBOUND,
    			ListenerProtocolTCP,
    		},
    		{
    			"HTTP to HTTP",
    			protocol.HTTP,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 02:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top