MirageOS signatures for network protocols
v1.2.0
Ethernet stack
An Ethernet stack that parses frames from a network device and can associate them with IP address via ARP.
module Ethif : sig ... end
module type ETHIF = sig ... end
IP stack
module type IP = sig ... end
An IP stack that parses Ethernet frames into IP packets
ARP
module type ARP = sig ... end
module type IPV4 = sig ... end
module type IPV6 = sig ... end
No Icmp module, as there are no exposed error polymorphic variants
module type ICMP = sig ... end
module type ICMPV4 = sig ... end
UDP stack
No Udp module, as there are no exposed error polymorphic variants
module type UDP = sig ... end
TCP stack
module type TCP = sig ... end
A TCP stack that can send and receive reliable streams using the TCP protocol.