package charrua-client
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=8fcd4a51a10eeb600989585847fb373c2f5187bef8019455091eea3751a7f405
sha512=0629cd497d9f234821279ac58ce707ca303b36093f887af9cb462139f3bd21ae0e9a80dd9375f7d5ad22eca7517c7e9c77193c616871da5bd68b3e456550f1e4
doc/charrua-client.mirage/Dhcp_ipv4/Proj_net/index.html
Module Dhcp_ipv4.Proj_netSource
Projection of the Mirage_net.S device.
Parameters
Signature
include Mirage_net.S
The type for network interface errors.
Disconnect from the network device. While this might take some time to complete, it can never result in an error.
write net ~size fill allocates a buffer of length size, where size must not exceed the interface maximum packet size (mtu plus Ethernet header). The allocated buffer is zeroed and passed to the fill function which returns the payload length, which may not exceed the length of the buffer. When fill returns, a sub buffer is put on the wire: the allocated buffer from index 0 to the returned length.
listen ~header_size net fn waits for a packet with size at most header_size + mtu on the network device. When a packet is received, an asynchronous task is created in which fn packet is called. The ownership of packet is transferred to fn. The function can be stopped by calling disconnect.
val mtu : t -> intmtu net is the Maximum Transmission Unit of net. This excludes the Ethernet header.
val get_stats_counters : t -> Mirage_net.statsObtain the most recent snapshot of the interface statistics.
val reset_stats_counters : t -> unitReset the statistics associated with this interface to their defaults.