You can search for identifiers within the package.
in-package search v0.2.0
Service record
A Service record (SRV) specifies a target, its priority, weight and port.
type t = {
priority : int;
weight : int;
port : int;
target : [ `host ] Domain_name.t;
}
The type for a service record.
val pp : t Fmt.t
pp ppf t pretty-prints the service record.
pp ppf t
val compare : t -> t -> int
compare a b compares the service record a with b.
compare a b
a
b