Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for updateDomainIPs (0.06 sec)

  1. cmd/common-main.go

    				}
    			}
    			domainIPs.Add(endpoint)
    		}
    		updateDomainIPs(domainIPs)
    	} else {
    		// Add found interfaces IP address to global domain IPS,
    		// loopback addresses will be naturally dropped.
    		domainIPs := mustGetLocalIP4()
    		for _, host := range globalEndpoints.Hostnames() {
    			domainIPs.Add(host)
    		}
    		updateDomainIPs(domainIPs)
    	}
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 21:50:11 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. cmd/endpoint.go

    				uniqueArgs.Add(net.JoinHostPort("localhost", serverAddrPort))
    			}
    		}
    
    		poolEndpoints[i] = endpoints
    	}
    
    	publicIPs := env.Get(config.EnvPublicIPs, "")
    	if len(publicIPs) == 0 {
    		updateDomainIPs(uniqueArgs)
    	}
    
    	erasureType := len(uniqueArgs.ToSlice()) == 1
    
    	for _, endpoints := range poolEndpoints {
    		// Return Erasure setup when all endpoints are path style.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jun 21 22:22:24 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top