diff options
Diffstat (limited to 'pkg/network/ip.go')
-rw-r--r-- | pkg/network/ip.go | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/pkg/network/ip.go b/pkg/network/ip.go deleted file mode 100644 index ba93a0d05..000000000 --- a/pkg/network/ip.go +++ /dev/null @@ -1,19 +0,0 @@ -package network - -import ( - "net" - - "github.com/containernetworking/plugins/pkg/ip" -) - -// CalcGatewayIP takes a network and returns the first IP in it. -func CalcGatewayIP(ipn *net.IPNet) net.IP { - // taken from cni bridge plugin as it is not exported - nid := ipn.IP.Mask(ipn.Mask) - return ip.NextIP(nid) -} - -// IsIPv6 returns if netIP is IPv6. -func IsIPv6(netIP net.IP) bool { - return netIP != nil && netIP.To4() == nil -} |