Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Ipv6DualStackSupported (0.75 sec)

  1. pkg/proxy/winkernel/hcnutils.go

    	return loadBalancer.Delete()
    }
    
    func (hcnObj hcnImpl) GetSupportedFeatures() hcn.SupportedFeatures {
    	return hcn.GetSupportedFeatures()
    }
    
    func (hcnObj hcnImpl) Ipv6DualStackSupported() error {
    	return hcn.IPv6DualStackSupported()
    }
    
    func (hcnObj hcnImpl) DsrSupported() error {
    	return hcn.DSRSupported()
    }
    
    func (hcnObj hcnImpl) DeleteAllHnsLoadBalancerPolicy() {
    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

    	}
    	delete(loadbalancerMap, loadBalancer.Id)
    	return nil
    }
    
    func (hcnObj HcnMock) GetSupportedFeatures() hcn.SupportedFeatures {
    	return hcnObj.supportedFeatures
    }
    
    func (hcnObj HcnMock) Ipv6DualStackSupported() error {
    	if hcnObj.supportedFeatures.IPv6DualStack {
    		return nil
    	}
    	return errors.New("IPV6 DualStack Not Supported")
    }
    
    func (hcnObj HcnMock) DsrSupported() error {
    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

    func (t DualStackCompatTester) DualStackCompatible(networkName string) bool {
    	hcnImpl := newHcnImpl()
    	// First tag of hcsshim that has a proper check for dual stack support is v0.8.22 due to a bug.
    	if err := hcnImpl.Ipv6DualStackSupported(); err != nil {
    		// Hcn *can* fail the query to grab the version of hcn itself (which this call will do internally before parsing
    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