mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2025-12-28 12:30:18 +00:00
115 lines
3.1 KiB
C#
115 lines
3.1 KiB
C#
/*
|
|
Technitium DNS Server
|
|
Copyright (C) 2023 Shreyas Zare (shreyas@technitium.com)
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
using DnsServerCore.ApplicationCommon;
|
|
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using TechnitiumLibrary.Net.Dns;
|
|
using TechnitiumLibrary.Net.Proxy;
|
|
|
|
namespace DnsServerCore.Dns.Applications
|
|
{
|
|
class DnsServerInternal : IDnsServer
|
|
{
|
|
#region variables
|
|
|
|
readonly DnsServer _dnsServer;
|
|
readonly string _applicationName;
|
|
readonly string _applicationFolder;
|
|
|
|
IDnsCache _dnsCache;
|
|
|
|
#endregion
|
|
|
|
#region constructor
|
|
|
|
public DnsServerInternal(DnsServer dnsServer, string applicationName, string applicationFolder)
|
|
{
|
|
_dnsServer = dnsServer;
|
|
_applicationName = applicationName;
|
|
_applicationFolder = applicationFolder;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region public
|
|
|
|
public Task<DnsDatagram> DirectQueryAsync(DnsQuestionRecord question, int timeout = 4000)
|
|
{
|
|
return _dnsServer.DirectQueryAsync(question, timeout, true);
|
|
}
|
|
|
|
public Task<DnsDatagram> DirectQueryAsync(DnsDatagram request, int timeout = 4000)
|
|
{
|
|
return _dnsServer.DirectQueryAsync(request, timeout, true);
|
|
}
|
|
|
|
public Task<DnsDatagram> ResolveAsync(DnsQuestionRecord question, CancellationToken cancellationToken = default)
|
|
{
|
|
return DirectQueryAsync(question);
|
|
}
|
|
|
|
public void WriteLog(string message)
|
|
{
|
|
_dnsServer.LogManager?.Write("DNS App [" + _applicationName + "]: " + message);
|
|
}
|
|
|
|
public void WriteLog(Exception ex)
|
|
{
|
|
_dnsServer.LogManager?.Write("DNS App [" + _applicationName + "]: " + ex.ToString());
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region properties
|
|
|
|
public string ApplicationName
|
|
{ get { return _applicationName; } }
|
|
|
|
public string ApplicationFolder
|
|
{ get { return _applicationFolder; } }
|
|
|
|
public string ServerDomain
|
|
{ get { return _dnsServer.ServerDomain; } }
|
|
|
|
public IDnsCache DnsCache
|
|
{
|
|
get
|
|
{
|
|
if (_dnsCache is null)
|
|
_dnsCache = new ResolverDnsCache(_dnsServer, true);
|
|
|
|
return _dnsCache;
|
|
}
|
|
}
|
|
|
|
public NetProxy Proxy
|
|
{ get { return _dnsServer.Proxy; } }
|
|
|
|
public bool PreferIPv6
|
|
{ get { return _dnsServer.PreferIPv6; } }
|
|
|
|
public ushort UdpPayloadSize
|
|
{ get { return _dnsServer.UdpPayloadSize; } }
|
|
|
|
#endregion
|
|
}
|
|
}
|