package mnet

  1. Overview
  2. Docs
An implementation of TCP (Transmission Control Protocol) in OCaml for Miou & Solo5

Install

dune-project
 Dependency

Authors

Maintainers

Sources

mnet-0.0.6.tbz
sha256=98230fefe2962c4e766a32f3af206a09e2b866e1cab8e82ed24d27eb580b365a
sha512=08fb6d2876efc620742cea99203ee1d4af9979ea2af916c5fd11de2ecfeb6355d694fea513a4e45f7c85089b91a0dde3dc932d5b57d03770986a1a62b40fbbae

Description

Added to opam-repository:

README

mnet, a pure OCaml TCP/IP stack for unikernels

mnet is a library that implements certain network layers to provide a TCP/IP stack for an application using utcp. The project essentially requires the reading and writing of Ethernet frames, which is provided by Solo5 and mkernel.

This library implements:

  • an IPv4 layer (with ARP)
  • an IPv6 layer
  • an ICMP layer
  • the DNS protocol using mnet-dns
  • the TLS protocol using mnet-tls
  • the SSH protocol using mnet-ssh
  • a DHCP layer using mnet-dhcp

The aim is to provide a ready-to-use TCP/IP stack implemented entirely in OCaml. Here is an example of how to initialise a TCP/IP stack that configures itself automatically based on an available DHCP server.

let ( let@ ) finally fn = Fun.protect ~finally fn
module RNG = Mirage_crypto_rng.Fortuna

let rng () = Mirage_crypto_rng_mkernel.initialize (module RNG)
let rng = Mkernel.map rng Mkernel.[]
let cfg = Mnet_dhcp.accept_all

let () =
  Mkernel.(run [ rng; Mnet_dhcp.stack ~name:"service" cfg ])
  @@ fun rng (stack, tcp, udp, lease) () ->
  let@ () = fun () -> Mnet_dhcp.kill stack in
  let@ () = fun () -> Mirage_crypto_rng_mkernel.kill rng in
  ...

mnet is a replacement for mirage-tcpip, designed to take advantage of effects and our Miou scheduler.

Dev Dependencies

None

Used by (8)

  1. mhttp >= "0.0.3"
  2. mnet-cli >= "0.0.6"
  3. mnet-dhcp >= "0.0.6"
  4. mnet-dns >= "0.0.6"
  5. mnet-happy-eyeballs >= "0.0.6"
  6. mnet-ssh >= "0.0.6"
  7. mnet-tls >= "0.0.6"
  8. msendmail

Conflicts

None