package mirage-net

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
  • deprecated This module will be removed from MirageOS 4.0. Please use Mirage_net instead.
include module type of struct include Mirage_net end
module Net = Mirage_net.Net
type stats = Mirage_net.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

module type S = Mirage_net.S

A network interface that serves Ethernet frames.

module Stats = Mirage_net.Stats
OCaml

Innovation. Community. Security.