This commit is contained in:
Connection Refused
2019-12-02 19:51:12 +08:00
commit b2ea730984
229 changed files with 86605 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using System.Net;
namespace DnsClient.Protocol
{
/// <summary>
/// A <see cref="DnsResourceRecord"/> represending an IPv6 <see cref="IPAddress"/>.
/// <para>
/// A 128 bit IPv6 address is encoded in the data portion of an AAAA
/// resource record in network byte order(high-order byte first).
/// </para>
/// </summary>
/// <seealso href="https://tools.ietf.org/html/rfc3596#section-2.2">RFC 3596</seealso>
public class AaaaRecord : AddressRecord
{
/// <summary>
/// Initializes a new instance of the <see cref="AaaaRecord"/> class.
/// </summary>
/// <inheritdoc />
public AaaaRecord(ResourceRecordInfo info, IPAddress address) : base(info, address)
{
}
}
}