2024-05-17 17:56:37 +08:00
|
|
|
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
2023-04-19 18:25:10 +08:00
|
|
|
//go:build !plus
|
|
|
|
|
|
|
|
|
|
package nodes
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/iplibrary"
|
|
|
|
|
"github.com/iwind/TeaGo/logs"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// 启动IP库
|
|
|
|
|
func (this *AdminNode) startIPLibrary() {
|
2023-04-19 21:03:46 +08:00
|
|
|
logs.Println("[NODE]initializing ip library ...")
|
2023-04-19 18:25:10 +08:00
|
|
|
err := iplibrary.InitDefault()
|
|
|
|
|
if err != nil {
|
2023-04-19 21:03:46 +08:00
|
|
|
logs.Println("[NODE]initialize ip library failed: "+err.Error())
|
2023-04-19 18:25:10 +08:00
|
|
|
}
|
|
|
|
|
}
|