mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	move ippart() to util
This commit is contained in:
		
							
								
								
									
										51
									
								
								pkg/proxy/util/endpoints.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										51
									
								
								pkg/proxy/util/endpoints.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,51 @@
 | 
			
		||||
/*
 | 
			
		||||
Copyright 2017 The Kubernetes Authors.
 | 
			
		||||
 | 
			
		||||
Licensed under the Apache License, Version 2.0 (the "License");
 | 
			
		||||
you may not use this file except in compliance with the License.
 | 
			
		||||
You may obtain a copy of the License at
 | 
			
		||||
 | 
			
		||||
    http://www.apache.org/licenses/LICENSE-2.0
 | 
			
		||||
 | 
			
		||||
Unless required by applicable law or agreed to in writing, software
 | 
			
		||||
distributed under the License is distributed on an "AS IS" BASIS,
 | 
			
		||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
			
		||||
See the License for the specific language governing permissions and
 | 
			
		||||
limitations under the License.
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
package util
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"net"
 | 
			
		||||
 | 
			
		||||
	"github.com/golang/glog"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// IPPart returns just the IP part of an IP or IP:port or endpoint string. If the IP
 | 
			
		||||
// part is an IPv6 address enclosed in brackets (e.g. "[fd00:1::5]:9999"),
 | 
			
		||||
// then the brackets are stripped as well.
 | 
			
		||||
func IPPart(s string) string {
 | 
			
		||||
	if ip := net.ParseIP(s); ip != nil {
 | 
			
		||||
		// IP address without port
 | 
			
		||||
		return s
 | 
			
		||||
	}
 | 
			
		||||
	// Must be IP:port
 | 
			
		||||
	ip, _, err := net.SplitHostPort(s)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		glog.Errorf("Error parsing '%s': %v", s, err)
 | 
			
		||||
		return ""
 | 
			
		||||
	}
 | 
			
		||||
	return ip
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ToCIDR returns a host address of the form <ip-address>/32 for
 | 
			
		||||
// IPv4 and <ip-address>/128 for IPv6
 | 
			
		||||
func ToCIDR(ip net.IP) string {
 | 
			
		||||
	len := 32
 | 
			
		||||
	if ip.To4() == nil {
 | 
			
		||||
		len = 128
 | 
			
		||||
	}
 | 
			
		||||
	return fmt.Sprintf("%s/%d", ip.String(), len)
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user