package dns

  1. Overview
  2. Docs
An opinionated Domain Name System (DNS) library

Install

dune-project
 Dependency

Authors

Maintainers

Sources

dns-6.3.0.tbz
sha256=dc40237a737d1088b83ec5c26437af9843c3692e316c449b71b07ba458307351
sha512=4716559298ab5c5c47bcb94f3614ea3309033a710469ca2a16e1eda8012b596897a9f26007ed8fb360e6119cf94e88c4ae7e74137863959a4c54aa9983277020

doc/dns/Dns/Nsec3/index.html

Module Dns.Nsec3Source

Nsec3

Hashed authenticated denial of existence resource record, used by DNSSec.

Sourcetype f = [
  1. | `Opt_out
  2. | `Unknown of int
]

The type of flags.

Sourceval flags_of_int : int -> f option

flags_of_int v is f.

Sourcetype t = {
  1. flags : f option;
  2. iterations : int;
  3. salt : Cstruct.t;
  4. next_owner_hashed : Cstruct.t;
  5. types : Bit_map.t;
}

The type of Nsec3.

Sourceval pp : t Fmt.t

pp ppf t pretty-prints the Nsec3.

Sourceval compare : t -> t -> int

compare a b compares the Nsec3 a with b.