实现域名、记录同步等API

This commit is contained in:
刘祥超
2021-06-01 16:43:13 +08:00
parent c725c9e082
commit e4d958fd2c
19 changed files with 1400 additions and 369 deletions

26
pkg/configutils/ip.go Normal file
View File

@@ -0,0 +1,26 @@
package configutils
import (
"encoding/binary"
"github.com/cespare/xxhash/v2"
"math"
"net"
"strings"
)
// IP2Long 将IP转换为整型
// 注意IPv6没有顺序
func IP2Long(ip string) uint64 {
if len(ip) == 0 {
return 0
}
s := net.ParseIP(ip)
if len(s) == 0 {
return 0
}
if strings.Contains(ip, ":") {
return math.MaxUint32 + xxhash.Sum64(s)
}
return uint64(binary.BigEndian.Uint32(s.To4()))
}