package dns

  1. Overview
  2. Docs

Certificate authority authorization

A certificate authority authorization (CAA) record can restrict usage of certain certificate authorities for an entire domain.

type t = {
  1. critical : bool;
  2. tag : string;
  3. value : string list;
}

The type of a CAA record.

val pp : t Fmt.t

pp ppf t pretty-prints the CAA record.

val compare : t -> t -> int

compare a b compares the CAA record a with b.