Library
Module
Module type
Parameter
Class
Class type
val pp_action : action Fmt.t
pp_action ppf a
pretty-prints the action a
on ppf
.
type event =
| Resolved_a of [ `host ] Domain_name.t * Ipaddr.V4.Set.t
| Resolved_aaaa of [ `host ] Domain_name.t * Ipaddr.V6.Set.t
| Resolved_a_failed of [ `host ] Domain_name.t
| Resolved_aaaa_failed of [ `host ] Domain_name.t
| Connection_failed of [ `host ] Domain_name.t * int * Ipaddr.t * int
| Connected of [ `host ] Domain_name.t * int * Ipaddr.t * int
The variant of events.
val pp_event : event Fmt.t
pp_event ppf e
pretty-prints event e
on ppf
.
val create :
?aaaa_timeout:int64 ->
?v6_connect_timeout:int64 ->
?connect_timeout:int64 ->
?resolve_timeout:int64 ->
?resolve_retries:int ->
int64 ->
t
create ~aaaa_timeout ~v6_connect_timeout ~connect_timeout ~resolve_timeout ~resolve_retries ts
creates the internal state, initialized with the timestamp ts
(an arbitrary number that must be monotonically increasing). The timeouts are specified in nanoseconds: the default of aaaa_timeout
is Duration.of_ms 50
, v6_connect_timeout
is Duration.of_ms 200
, connect_timeout
is Duration.of_sec 10
, and resolve_timeout
is Duration.of_sec 1
. The resolve_retries
defaults to 3.
timer t ts
is a timer function that results in an updated t
and either `Suspend
signalling the timer thread can sleep or `Act
that the timer should be called again. In addition, a list of actions that need to be performed (connection to be retried, connection failures to be reported, ...) is provided. The timer thread should be signalled to resume after calling connect
or connect_ip
.
connect t ts ~id host ports
attempts a connection to host
, where the ports
are attempted in sequence. It results in an updated t
and a list of actions to be performed.
connect_ip t ts ~id addresses
attempts a connection to addresses
. By default, the list will be tried in sequence. The ports will be tried in sequence. The result is an updated t
and a list of actions to be performed.
event t ts ev
results in an updated t
and a list of actions to be performed.
module Waiter_map : sig ... end
A map for waiters and internal id.