package mirage-net

  1. Overview
  2. Docs
Network signatures for MirageOS

Install

dune-project
 Dependency

Authors

Maintainers

Sources

mirage-net-v4.0.0.tbz
sha256=668effd187b81a0ab32450870c15dbb89ff911397ff338a8951807e250e194ce
sha512=52064dc704ebd0d305fd234b6d89fc313d5a80016d8875ef93212a1962ad8b1f332f7b0338244afbb2d2f207a28d476e7d7639be9dc607d95145afee7fccc483

doc/mirage-net/Mirage_net/index.html

Module Mirage_netSource

Network devices

Mirage_net defines the signature for MirageOS network devices.

Release v4.0.0

Sourcemodule Net : sig ... end
Sourcetype stats = {
  1. mutable rx_bytes : int64;
  2. mutable rx_pkts : int32;
  3. mutable tx_bytes : int64;
  4. mutable tx_pkts : int32;
}

The type for frame statistics to track the usage of the device.

Networking

Sourcemodule type S = sig ... end

A network interface that serves Ethernet frames.

Sourcemodule Stats : sig ... end
On This Page
  1. Networking