mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2026-02-21 15:25:54 +00:00
CacheRecordInfo: added support for conditional forwarding client subnet.
This commit is contained in:
@@ -36,6 +36,7 @@ namespace DnsServerCore.Dns.ResourceRecords
|
||||
IReadOnlyList<DnsResourceRecord> _nsecRecords;
|
||||
NetworkAddress _eDnsClientSubnet;
|
||||
|
||||
bool _conditionalForwardingClientSubnet; //not serialized
|
||||
DateTime _lastUsedOn; //not serialized
|
||||
|
||||
#endregion
|
||||
@@ -188,6 +189,12 @@ namespace DnsServerCore.Dns.ResourceRecords
|
||||
set { _eDnsClientSubnet = value; }
|
||||
}
|
||||
|
||||
public bool ConditionalForwardingClientSubnet
|
||||
{
|
||||
get { return _conditionalForwardingClientSubnet; }
|
||||
set { _conditionalForwardingClientSubnet = value; }
|
||||
}
|
||||
|
||||
public DateTime LastUsedOn
|
||||
{
|
||||
get { return _lastUsedOn; }
|
||||
|
||||
Reference in New Issue
Block a user