Dns.Caa
Certificate authority authorization
A certificate authority authorization (CAA) record can restrict usage of certain certificate authorities for an entire domain.
type t = {
critical : bool;
tag : string;
value : string list;
}
The type of a CAA record.
val pp : t Fmt.t
pp ppf t pretty-prints the CAA record.
pp ppf t
val compare : t -> t -> int
compare a b compares the CAA record a with b.
compare a b
a
b