From b216e0adc4982fbbb2d9cfe2f187a430e91f5257 Mon Sep 17 00:00:00 2001 From: Tait Hoyem Date: Sun, 4 Dec 2022 16:47:57 -0700 Subject: [PATCH] Add CAA record type --- src/responses.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/responses.rs b/src/responses.rs index a7d8238..338d5b2 100644 --- a/src/responses.rs +++ b/src/responses.rs @@ -481,6 +481,8 @@ pub enum RecordType { /// An AAAA record (usually said "quadrupal A") is an IPv6 pointer with a key (domain or subdomain) and /// value (IP address). AAAA, + /// A CAA record is a way to restrict which authorities may create TLS certificates for your domain. Best security practices state that you should set this for any domain you have sufficient control over. + CAA, /// A CNAME record basically forwards requests from a domain or subdomain to a second domain or /// subdomain. It is very common to see this in places where www.example.com and ftp.example.com /// use the same server (and IP address) at example.com; now, when switching IP addresses, the address only