IDnsServer: implementing IDnsClient to allow using it where dns client resolution is required.

This commit is contained in:
Shreyas Zare
2023-03-18 13:31:07 +05:30
parent f7582faab9
commit a281a0fbf0

View File

@@ -27,7 +27,7 @@ namespace DnsServerCore.ApplicationCommon
/// <summary> /// <summary>
/// Provides an interface to access the internal DNS Server core. /// Provides an interface to access the internal DNS Server core.
/// </summary> /// </summary>
public interface IDnsServer public interface IDnsServer : IDnsClient
{ {
/// <summary> /// <summary>
/// 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. /// 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.