自建DNS支持递归查询

This commit is contained in:
刘祥超
2021-08-21 16:46:41 +08:00
parent d768d46854
commit ab7b2fee3a
5 changed files with 82 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ type NSCluster struct {
State uint8 `field:"state"` // 状态
AccessLog string `field:"accessLog"` // 访问日志配置
GrantId uint32 `field:"grantId"` // 授权ID
Recursion string `field:"recursion"` // 递归DNS设置
}
type NSClusterOperator struct {
@@ -19,6 +20,7 @@ type NSClusterOperator struct {
State interface{} // 状态
AccessLog interface{} // 访问日志配置
GrantId interface{} // 授权ID
Recursion interface{} // 递归DNS设置
}
func NewNSClusterOperator() *NSClusterOperator {