package dns

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

dns-10.2.0.tbz
sha256=ad27c09256f9848658ee625d69140c898c24694aca43550bfb6fee5bc83e74e8
sha512=d5d6a0580d55485cbe46841fb8d5acd7de801bf6ce980f31888836425e39f23f3ff2e909c5f195b15a36166ae97ecd68d24429318028ae8d1ea9322df2f5a65d

doc/dns/Dns/Mx/index.html

Module Dns.MxSource

Mail exchange

A mail exchange (MX) record specifies the mail server where mail for this domain should be delivered to. A domain may have multiple MX records, each has a 16bit preference.

Sourcetype t = {
  1. preference : int;
  2. mail_exchange : [ `host ] Domain_name.t;
}

The type of a mail exchange.

Sourceval pp : t Fmt.t

pp ppf t pretty-prints the mail exchange.

Sourceval compare : t -> t -> int

compare a b compares the name and preference of a with b.