package dns
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
An opinionated Domain Name System (DNS) library
Install
dune-project
Dependency
Authors
Maintainers
Sources
dns-8.0.0.tbz
sha256=0882061bc5bfa7515ab26c84ca8062323ac5931b3f8ae2952794b0c927d8854e
sha512=1b937aea10a76aebd6b9f44e7142fb0818e17147048fc7ff99ff6f29e5b217eb75e2bc700464089ed453ced2fede4a094828bf278a555736b51fbe285d6271a4
doc/dns/Dns/Soa/index.html
Module Dns.SoaSource
Start of authority
The start of authority (SOA) is a resource record at domain boundaries. It contains metadata (serial number, refresh interval, hostmaster) of the domain.
Source
type t = {nameserver : [ `raw ] Domain_name.t;hostmaster : [ `raw ] Domain_name.t;serial : int32;refresh : int32;retry : int32;expiry : int32;minimum : int32;
}The type of a start of authority.
Source
val create :
?serial:int32 ->
?refresh:int32 ->
?retry:int32 ->
?expiry:int32 ->
?minimum:int32 ->
?hostmaster:'a Domain_name.t ->
'b Domain_name.t ->
tcreate ~serial ~refresh ~retry ~expiry ~minimum ~hostmaster nameserver returns a start of authority. The default for hostmaster is replacing the first domain name part of nameserver with "hostmaster" (to result in hostmaster@foo.com if ns1.foo.com is the nameserver.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>