Current section

Files

Jump to
dhcp_server src dhcp_server_alloc.hrl
Raw

src/dhcp_server_alloc.hrl

-ifndef(_DHCP_SERVER_ALLOC).
-define(_DHCP_SERVER_ALLOC, true).
-record(subnet, {network, netmask, range, options}).
-record(host, {id, ip}).
-record(address, {ip, status, timer = undefined, options = undefined}).
-record(lease, {clientid, ip, expires}).
-endif.