mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2026-04-05 04:09:28 +00:00
DnsServer: fixed issue of added ttl parameter.
This commit is contained in:
@@ -1105,7 +1105,7 @@ namespace DnsServerCore.Dns
|
||||
AuthZoneInfo zoneInfo = _authZoneManager.GetAuthZoneInfo(appResourceRecord.Name);
|
||||
IDnsServer dnsServer = new DnsServerInternal(this, package.PackagePath);
|
||||
|
||||
DnsDatagram appResponse = await dnsApplication.ProcessQueryAsync(request, remoteEP, zoneInfo.Name, appRecord.Data, isRecursionAllowed, dnsServer);
|
||||
DnsDatagram appResponse = await dnsApplication.ProcessQueryAsync(request, remoteEP, zoneInfo.Name, appResourceRecord.TtlValue, appRecord.Data, isRecursionAllowed, dnsServer);
|
||||
if (appResponse != null)
|
||||
{
|
||||
if (appResponse.AuthoritativeAnswer)
|
||||
|
||||
Reference in New Issue
Block a user