Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DSRSupported (0.09 sec)

  1. pkg/proxy/winkernel/hcnutils.go

    	return hcn.GetSupportedFeatures()
    }
    
    func (hcnObj hcnImpl) Ipv6DualStackSupported() error {
    	return hcn.IPv6DualStackSupported()
    }
    
    func (hcnObj hcnImpl) DsrSupported() error {
    	return hcn.DSRSupported()
    }
    
    func (hcnObj hcnImpl) DeleteAllHnsLoadBalancerPolicy() {
    	plists, err := hcsshim.HNSListPolicyListRequest()
    	if err != nil {
    		return
    	}
    	for _, plist := range plists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 03:08:46 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/testing/hcnutils_mock.go

    }
    
    func (hcnObj HcnMock) Ipv6DualStackSupported() error {
    	if hcnObj.supportedFeatures.IPv6DualStack {
    		return nil
    	}
    	return errors.New("IPV6 DualStack Not Supported")
    }
    
    func (hcnObj HcnMock) DsrSupported() error {
    	if hcnObj.supportedFeatures.DSR {
    		return nil
    	}
    	return errors.New("DSR Not Supported")
    }
    
    func (hcnObj HcnMock) DeleteAllHnsLoadBalancerPolicy() {
    	for k := range loadbalancerMap {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 06:29:01 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. pkg/proxy/winkernel/proxier.go

    	if service.Spec.InternalTrafficPolicy != nil {
    		internalTrafficLocal = *service.Spec.InternalTrafficPolicy == v1.ServiceInternalTrafficPolicyLocal
    	}
    	hcnImpl := proxier.hcn
    	err := hcnImpl.DsrSupported()
    	if err != nil {
    		preserveDIP = false
    		localTrafficDSR = false
    	}
    	// targetPort is zero if it is specified as a name in port.TargetPort.
    	// Its real value would be got later from endpoints.
    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