package dns

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

dns-10.2.4.tbz
sha256=d852d15ca2f58db573679bf18688745600b91296e2e54486609869d666f3d12f
sha512=09d3b1cf76bccbff1a0c042922a3e9d6fa3605770d3d9d9aab3462f32d9156c87f6468b531f27dbcc1ce9030c1bd5f3c81c051f5f6a7ee7d802c1fddf1848058

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 : string;
  4. next_owner_hashed : string;
  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.