package charrua-client

  1. Overview
  2. Docs
DHCP client implementation

Install

dune-project
 Dependency

Authors

Maintainers

Sources

charrua-3.2.1.tbz
sha256=23feba77dd924883d33605a24b442ebe6ce873e673bc634c2c7b8b82843c3e05
sha512=055a944fa60c02f383ffce231de77b31bdf67ee60cf98523b6d3e547ec3cba069af8b3175293ce3990a6884e30fb82f180bd16ca29517b819705fa2e69587b00

doc/charrua-client.mirage/Dhcp_ipv4/index.html

Module Dhcp_ipv4Source

Sourcemodule type S = sig ... end
Sourcemodule type With_lease = sig ... end
Sourcemodule Make (Network : Mirage_net.S) (Ethernet : Ethernet.S) (Arp : Arp.S) : sig ... end

Make(N)(E)(A) instantiates a device that exposes a Mirage_net.S interface as well as a Tcpip.Ip.S interface with ipv4. On connection it either requests a DHCP lease or sets up a static IPv4 address. The exposed Mirage_net.S interface is N but with incoming dhcp messages filtered out. It is expected that E and A are instantiated with N.

Sourcemodule Proj_net (T : S) : sig ... end

Projection of the Mirage_net.S device.

Sourcemodule Proj_ipv4 (T : S) : sig ... end

Projection of the IPv4 Tcpip.Ip.S device.

Sourcemodule Proj_lease (T : With_lease) : sig ... end

Projection of the DHCP lease as a device.