package async_unix

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = Core_unix.addr_info = {
  1. ai_family : Core_unix.socket_domain;
  2. ai_socktype : Core_unix.socket_type;
  3. ai_protocol : int;
  4. ai_addr : Core_unix.sockaddr;
  5. ai_canonname : string;
}
include Core.Bin_prot.Binable.S with type t := t
include Bin_prot.Binable.S_only_functions with type t := t
val bin_size_t : t Bin_prot.Size.sizer
val bin_write_t : t Bin_prot.Write.writer
val bin_read_t : t Bin_prot.Read.reader
val __bin_read_t__ : (int -> t) Bin_prot.Read.reader

This function only needs implementation if t exposed to be a polymorphic variant. Despite what the type reads, this does *not* produce a function after reading; instead it takes the constructor tag (int) before reading and reads the rest of the variant t afterwards.

val bin_shape_t : Bin_prot.Shape.t
val bin_writer_t : t Bin_prot.Type_class.writer
val bin_reader_t : t Bin_prot.Type_class.reader
val sexp_of_t : t -> Sexplib0.Sexp.t
module Blocking_sexp : sig ... end

Blocking_sexp performs DNS lookup to resolve hostnames to IP addresses.

type getaddrinfo_option = Core_unix.getaddrinfo_option =
  1. | AI_FAMILY of Core_unix.socket_domain
  2. | AI_SOCKTYPE of Core_unix.socket_type
  3. | AI_PROTOCOL of int
  4. | AI_NUMERICHOST
  5. | AI_CANONNAME
  6. | AI_PASSIVE
val bin_shape_getaddrinfo_option : Core.Bin_prot.Shape.t
val bin_size_getaddrinfo_option : getaddrinfo_option Core.Bin_prot.Size.sizer
val bin_write_getaddrinfo_option : getaddrinfo_option Core.Bin_prot.Write.writer
val bin_writer_getaddrinfo_option : getaddrinfo_option Core.Bin_prot.Type_class.writer
val bin_read_getaddrinfo_option : getaddrinfo_option Core.Bin_prot.Read.reader
val __bin_read_getaddrinfo_option__ : (int -> getaddrinfo_option) Core.Bin_prot.Read.reader
val bin_reader_getaddrinfo_option : getaddrinfo_option Core.Bin_prot.Type_class.reader
val bin_getaddrinfo_option : getaddrinfo_option Core.Bin_prot.Type_class.t
val sexp_of_getaddrinfo_option : getaddrinfo_option -> Sexplib0.Sexp.t
val getaddrinfo_option_of_sexp : Sexplib0.Sexp.t -> getaddrinfo_option
val get : ?service:string -> host:string -> getaddrinfo_option list -> t list Async_kernel.Deferred.t