IDnsRequestController: updated summary comments.

This commit is contained in:
Shreyas Zare
2021-09-26 17:38:27 +05:30
parent 3638145cfb
commit 368827161e

View File

@@ -42,12 +42,12 @@ namespace DnsServerCore.ApplicationCommon
} }
/// <summary> /// <summary>
/// Allows a DNS App to inspect and optionally block incoming DNS requests before they are processed by the DNS Server core. /// Allows a DNS App to inspect and optionally drop incoming DNS requests before they are processed by the DNS Server core.
/// </summary> /// </summary>
public interface IDnsRequestController public interface IDnsRequestController
{ {
/// <summary> /// <summary>
/// Allows a DNS App to inspect an incoming DNS request and decide whether to allow or block it. This method is called by the DNS Server before an incoming request is processed. /// Allows a DNS App to inspect an incoming DNS request and decide whether to allow or drop it. This method is called by the DNS Server before an incoming request is processed.
/// </summary> /// </summary>
/// <param name="request">The incoming DNS request.</param> /// <param name="request">The incoming DNS request.</param>
/// <param name="remoteEP">The end point (IP address and port) of the client making the request.</param> /// <param name="remoteEP">The end point (IP address and port) of the client making the request.</param>