DnsServerInternal: updated to implement IDnsServer changes.

This commit is contained in:
Shreyas Zare
2024-05-19 14:56:11 +05:30
parent c188d0146b
commit 2fbda53c81

View File

@@ -1,6 +1,6 @@
/*
Technitium DNS Server
Copyright (C) 2023 Shreyas Zare (shreyas@technitium.com)
Copyright (C) 2024 Shreyas Zare (shreyas@technitium.com)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -19,6 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
using DnsServerCore.ApplicationCommon;
using System;
using System.Net.Mail;
using System.Threading;
using System.Threading.Tasks;
using TechnitiumLibrary.Net.Dns;
@@ -89,6 +90,9 @@ namespace DnsServerCore.Dns.Applications
public string ServerDomain
{ get { return _dnsServer.ServerDomain; } }
public MailAddress ResponsiblePerson
{ get { return _dnsServer.ResponsiblePerson; } }
public IDnsCache DnsCache
{
get