dns-forward
Library and tools for creating forwarding DNS servers
1024" x-on:close-sidebar="sidebar=window.innerWidth > 1024 && true">
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Library dns_forward
module Address : sig ... end
module Domain : sig ... end
module Server : sig ... end
type t = {
servers : Server.Set.t; | (* Upstream DNS servers *) |
search : string list; | (* Ordered list of domains to search *) |
assume_offline_after_drops : int option; | (* Once this number of drops have happened, assume the server is offline *) |
}
A DNS configuration
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
include Comparable with type t := t
val to_string : t -> string
Return a human-readable string corresponding to a configuration
module Unix : sig ... end