DNS服务支持密钥管理

This commit is contained in:
GoEdgeLab
2021-07-25 09:43:57 +08:00
parent f074f474e0
commit 870fff9479
11 changed files with 404 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ type NSDomain struct {
CreatedAt uint64 `field:"createdAt"` // 创建时间
Version uint64 `field:"version"` // 版本
State uint8 `field:"state"` // 状态
Tsig string `field:"tsig"` // TSIG配置
}
type NSDomainOperator struct {
@@ -21,6 +22,7 @@ type NSDomainOperator struct {
CreatedAt interface{} // 创建时间
Version interface{} // 版本
State interface{} // 状态
Tsig interface{} // TSIG配置
}
func NewNSDomainOperator() *NSDomainOperator {