1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /*
- Technitium DNS Server
- Copyright (C) 2020 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.Dns.ZoneManagers;
- using TechnitiumLibrary.Net.Dns;
- namespace DnsServerCore.Dns
- {
- class ResolverDnsCache : IDnsCache
- {
- #region variables
- readonly protected AuthZoneManager _authZoneManager;
- readonly protected CacheZoneManager _cacheZoneManager;
- #endregion
- #region constructor
- public ResolverDnsCache(AuthZoneManager authZoneManager, CacheZoneManager cacheZoneManager)
- {
- _authZoneManager = authZoneManager;
- _cacheZoneManager = cacheZoneManager;
- }
- #endregion
- #region public
- public virtual DnsDatagram Query(DnsDatagram request, bool serveStale = false)
- {
- DnsDatagram authResponse = _authZoneManager.Query(request);
- if (authResponse.Answer.Count > 0)
- return authResponse;
- DnsDatagram cacheResponse = _cacheZoneManager.Query(request, serveStale);
- if (cacheResponse.Answer.Count > 0)
- return cacheResponse;
- if ((authResponse.Authority.Count > 0) && (cacheResponse.Authority.Count > 0))
- {
- if (authResponse.Authority[0].Name.Length > cacheResponse.Authority[0].Name.Length)
- return authResponse;
- return cacheResponse;
- }
- else if (authResponse.Authority.Count > 0)
- {
- return authResponse;
- }
- else
- {
- return cacheResponse;
- }
- }
- public void CacheResponse(DnsDatagram response)
- {
- _cacheZoneManager.CacheResponse(response);
- }
- #endregion
- }
- }
|