From a281a0fbf0c8cd8e83b5cc240b45c19469393ad9 Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 18 Mar 2023 13:31:07 +0530 Subject: [PATCH] IDnsServer: implementing IDnsClient to allow using it where dns client resolution is required. --- DnsServerCore.ApplicationCommon/IDnsServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DnsServerCore.ApplicationCommon/IDnsServer.cs b/DnsServerCore.ApplicationCommon/IDnsServer.cs index ead3ceeb..1befce43 100644 --- a/DnsServerCore.ApplicationCommon/IDnsServer.cs +++ b/DnsServerCore.ApplicationCommon/IDnsServer.cs @@ -27,7 +27,7 @@ namespace DnsServerCore.ApplicationCommon /// /// Provides an interface to access the internal DNS Server core. /// - public interface IDnsServer + public interface IDnsServer : IDnsClient { /// /// Allows querying the DNS server core directly. This call supports recursion even if its not enabled in the DNS server configuration. The request wont be routed to any of the installed DNS Apps except for processing APP records. The request and its response are not counted in any stats or logged.