package mirage-types
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Ethernet stack
An Ethernet stack that parses frames from a network device and can associate them with IP address via ARP.
type error = [
| `Unknown of string
(*an undiagnosed error
*)| `Unimplemented
(*operation not yet implemented in the code
*)| `Disconnected
(*the device has been previously disconnected
*)
]
The type for IO operation errors.
writev nf bufs
output a list of buffers to netfront nf
as a single packet.
val input :
arpv4:(buffer -> unit io) ->
ipv4:(buffer -> unit io) ->
ipv6:(buffer -> unit io) ->
t ->
buffer ->
unit io
FIXME listen nf fn
is a blocking operation that calls fn
buf
with every packet that is read from the interface. It returns as soon as it has initialised, and the function can be stopped by calling disconnect
in the device layer.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page