package charrua-core

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type host = {
  1. hostname : string;
  2. options : Dhcp_wire.dhcp_option list;
  3. fixed_addr : Ipaddr.V4.t option;
  4. hw_addr : Macaddr.t;
}
type subnet = {
  1. network : Ipaddr.V4.Prefix.t;
  2. range : (Ipaddr.V4.t * Ipaddr.V4.t) option;
  3. options : Dhcp_wire.dhcp_option list;
  4. hosts : host list;
  5. default_lease_time : int32 option;
  6. max_lease_time : int32 option;
}
type t = {
  1. subnets : subnet list;
  2. options : Dhcp_wire.dhcp_option list;
  3. default_lease_time : int32;
  4. max_lease_time : int32;
}