CacheRecordInfo: added support for conditional forwarding client subnet.

This commit is contained in:
Shreyas Zare
2023-04-23 16:10:27 +05:30
parent 821af41210
commit 0e0481d0a1

View File

@@ -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; }