Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/proxy/winkernel/hns_test.go

    		t.Error(err)
    	}
    
    	// We populate this to ensure we test for getting existing load balancer
    	id := loadBalancerIdentifier{protocol: protocol, internalPort: internalPort, externalPort: externalPort, vip: serviceVip, endpointsHash: hash}
    	lbs[id] = &loadBalancerInfo{hnsID: LoadBalancer.Id}
    
    	lb, err := hns.getLoadBalancer(endpoints, loadBalancerFlags{}, sourceVip, serviceVip, protocol, internalPort, externalPort, lbs)
    
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    }
    
    type loadBalancerInfo struct {
    	hnsID string
    }
    
    type loadBalancerIdentifier struct {
    	protocol      uint16
    	internalPort  uint16
    	externalPort  uint16
    	vip           string
    	endpointsHash [20]byte
    }
    
    type loadBalancerFlags struct {
    	isILB           bool
    	isDSR           bool
    	isVipExternalIP bool
    	localRoutedVIP  bool
    	useMUX          bool
    	preserveDIP     bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
Back to top