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

@@ -443,6 +443,11 @@ func (this *APINode) registerServices(server *grpc.Server) {
pb.RegisterNSRouteServiceServer(server, instance)
this.rest(instance)
}
{
instance := this.serviceInstance(&nameservers.NSKeyService{}).(*nameservers.NSKeyService)
pb.RegisterNSKeyServiceServer(server, instance)
this.rest(instance)
}
{
instance := this.serviceInstance(&nameservers.NSAccessLogService{}).(*nameservers.NSAccessLogService)
pb.RegisterNSAccessLogServiceServer(server, instance)