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-v5.0.1.tbz
sha256=72c0a1a91c8e409bd448c8e0ea28d16d13177c326aea403ee1c30ddcb5969adc
sha512=f5067d4ef6aca863bd06e6721a63a03da80052ab8e361440e72fae07ca45773763e0321236c6810afe80bd679d68763dc63fb57aec2e953173cc9a944785c93c
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)"
>