package dns-resolver

  1. Overview
  2. Docs
DNS resolver business logic

Install

dune-project
 Dependency

Authors

Maintainers

Sources

dns-10.2.2.tbz
sha256=5123d7167f5fb3a5ab70cf0b3ccc965089ec440dc07edeabf8c0568ee737a7f0
sha512=4e5945435f280591c158ab03fec19dc0c807fb713d6ee68873939899c49175f39af1fbcd135517514a3ab088993356a4c303f7dce5e18d403d4630a33bad9076

doc/dns-resolver.shared/Dns_resolver_root/index.html

Module Dns_resolver_rootSource

Sourceval root_servers : ([ `raw ] Domain_name.t * Ipaddr.V4.t * Ipaddr.V6.t) list

root_servers are the root servers.

Sourceval ns_records : int32 * Domain_name.Host_set.t

ns_records is the root nameserver binding.

Sourceval a_records : ([ `raw ] Domain_name.t * (int32 * Ipaddr.V4.Set.t)) list

a_records is a list of names and bindings (A records) for the root servers.

Sourceval aaaa_records : ([ `raw ] Domain_name.t * (int32 * Ipaddr.V6.Set.t)) list

aaaa_records is a list of names and bindings (AAAA records) for the root servers.

Sourceval ips : [ `Both | `Ipv4_only | `Ipv6_only ] -> Ipaddr.t list

ips ip_proto is a list of ip addresses of the root servers.

Sourceval reserved_zones : ([ `raw ] Domain_name.t * Dns.Rr_map.b) list

reserved_zones is a list of names and bindings for reserved zones specified by RFCs (private network address ranges, private domains)

Sourceval reserved : Dns_trie.t

reserved is a trie with all reserved_zones.