From 2fbda53c81f060aa2b3067453a07d7a09c8f74fd Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sun, 19 May 2024 14:56:11 +0530 Subject: [PATCH] DnsServerInternal: updated to implement IDnsServer changes. --- DnsServerCore/Dns/Applications/DnsServerInternal.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/DnsServerCore/Dns/Applications/DnsServerInternal.cs b/DnsServerCore/Dns/Applications/DnsServerInternal.cs index be1d6497..dd6f5682 100644 --- a/DnsServerCore/Dns/Applications/DnsServerInternal.cs +++ b/DnsServerCore/Dns/Applications/DnsServerInternal.cs @@ -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 . 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