package core

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

A network interface on the local machine. See man getifaddrs.

module Broadcast_or_destination : sig ... end
module Flag : sig ... end
module Family : sig ... end
type t = {
  1. name : string;
  2. family : Family.t;
  3. flags : Flag.Set.t;
  4. address : Inet_addr.t option;
  5. netmask : Inet_addr.t option;
  6. broadcast_or_destination : Broadcast_or_destination.t option;
}
val broadcast_or_destination : t -> Broadcast_or_destination.t option
val netmask : t -> Inet_addr.t option
val address : t -> Inet_addr.t option
val flags : t -> Flag.Set.t
val family : t -> Family.t
val name : t -> string
module Fields : sig ... end
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t