增强IP相关函数

This commit is contained in:
刘祥超
2024-04-06 14:57:18 +08:00
parent cc0b2fd74f
commit a600fc9cd3
2 changed files with 61 additions and 0 deletions
+40
View File
@@ -3,6 +3,7 @@
package iputils
import (
"bytes"
"encoding/binary"
"encoding/hex"
"math"
@@ -53,6 +54,10 @@ func IsIPv6(ipString string) bool {
return rawIP != nil && rawIP.To4() == nil && rawIP.To16() != nil
}
func IsValid(ipString string) bool {
return net.ParseIP(ipString) != nil
}
func CompareLong(i1 string, i2 string) int {
if i1 == "" {
i1 = "0"
@@ -105,6 +110,9 @@ func ToLong(ip string) string {
}
func ToHex(ip string) string {
if len(ip) == 0 {
return ""
}
var rawIP = net.ParseIP(ip)
if rawIP == nil {
return ""
@@ -117,6 +125,38 @@ func ToHex(ip string) string {
return hex.EncodeToString(rawIP.To16())
}
func ToBytes(ip string) []byte {
if len(ip) == 0 {
return nil
}
var rawIP = net.ParseIP(ip)
if rawIP == nil {
return nil
}
if rawIP.To4() != nil {
return rawIP.To4()
}
return rawIP.To16()
}
func CompareBytes(b1 []byte, b2 []byte) int {
var l1 = len(b1)
var l2 = len(b2)
if l1 < l2 {
return -1
}
if l1 > l2 {
return 1
}
return bytes.Compare(b1, b2)
}
func CompareIP(ip1 string, ip2 string) int {
return CompareBytes(ToBytes(ip1), ToBytes(ip2))
}
func ToLittleLong(ip string) string {
var rawIP = net.ParseIP(ip)
if rawIP == nil {