From 832d2958cc84e499d0fec13820d81dbd79486d92 Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 19 Jun 2021 14:16:19 +0530 Subject: [PATCH] IDnsServer: updated DirectQueryAsync() method. --- DnsApplicationCommon/IDnsServer.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/DnsApplicationCommon/IDnsServer.cs b/DnsApplicationCommon/IDnsServer.cs index 9aa30abf..50943a55 100644 --- a/DnsApplicationCommon/IDnsServer.cs +++ b/DnsApplicationCommon/IDnsServer.cs @@ -30,9 +30,8 @@ namespace DnsApplicationCommon /// Allows querying the DNS server directly. This call supports recursion even if its not enabled in the DNS server configuration. The request and its response are not counted in any stats or logged.. /// /// The question record containing the details to query. - /// The time the request should wait async for an response. /// The DNS response for the DNS query or null if the request timed out. - Task DirectQueryAsync(DnsQuestionRecord question, int timeout = 2000); + Task DirectQueryAsync(DnsQuestionRecord question); /// /// Writes a log entry to the DNS server log file.