Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val create : unit -> t
create ()
creates an initial state of happy eyeballs.
val connect_host :
t ->
[ `host ] Domain_name.t ->
int list ->
((Ipaddr.t * int) * Lwt_unix.file_descr, [ `Msg of string ]) Stdlib.result
Lwt.t
connect_host t host ports
establishes a connection to host
on ports
(tried in sequence).
val connect_ip :
t ->
(Ipaddr.t * int) list ->
((Ipaddr.t * int) * Lwt_unix.file_descr, [ `Msg of string ]) Stdlib.result
Lwt.t
connect_ip t addresses
establishes a connection to addresses
.
val connect :
t ->
string ->
int list ->
((Ipaddr.t * int) * Lwt_unix.file_descr, [ `Msg of string ]) Stdlib.result
Lwt.t
connect t host ports
establishes a connection to host
on ports
, which may be a host name, or an IP address.