Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ipv4Supported (0.12 sec)

  1. cmd/kube-proxy/app/server_windows.go

    // what IP families are supported (and whether the configuration is usable at all).
    func (s *ProxyServer) platformCheckSupported(ctx context.Context) (ipv4Supported, ipv6Supported, dualStackSupported bool, err error) {
    	// Check if Kernel proxier can be used at all
    	_, err = winkernel.CanUseWinKernelProxier(winkernel.WindowsKernelCompatTester{})
    	if err != nil {
    		return false, false, false, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server_other.go

    // what IP families are supported (and whether the configuration is usable at all).
    func (s *ProxyServer) platformCheckSupported(ctx context.Context) (ipv4Supported, ipv6Supported, dualStackSupported bool, err error) {
    	return false, false, false, unsupportedError
    }
    
    // createProxier creates the proxy.Provider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top