opam-version: "2.0"
maintainer: "Christiano F. Haesbaert <haesbaert@haesbaert.org>"
authors: "Christiano F. Haesbaert <haesbaert@haesbaert.org>"
license: "ISC"
homepage: "https://github.com/mirage/charrua-core"
bug-reports: "https://github.com/mirage/charrua-core/issues"
dev-repo: "git+https://github.com/mirage/charrua-core.git"
doc: "https://mirage.github.io/charrua-core/api"

available: opam-version >= "1.2"
build: [
  ["jbuilder" "subst" "-p" name "--name" name] {pinned}
  ["jbuilder" "build" "-p" name "-j" jobs]
  ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
  "ocaml" {>= "4.03"}
  "jbuilder" {>= "1.0+beta7"}
  "ppx_sexp_conv" {< "v0.15"}
  "ppx_cstruct"
  "menhir" {build}
  "cstruct" {>= "3.0.1" & < "4.0.0"}
  "sexplib" {< "v0.15"}
  "ipaddr" {>= "2.5.0" & < "3.0.0"}
  "tcpip" {>= "3.1.0" & < "3.2.0"}
  "rresult"
  "io-page" {with-test}
  "cstruct-unix" {with-test}
]
conflicts: [
  "ppx_driver" {< "v0.9.0"}
]
synopsis:
  "DHCP core library - a DHCP server and wire frame encoder and decoder"
description: """
[charrua-core](http://www.github.com/mirage/charrua-core) is an
_ISC-licensed_ DHCP library implementation in OCaml.

[![docs](https://img.shields.io/badge/doc-online-blue.svg)](http://mirage.github.io/charrua-core/api)
[![Build Status](https://travis-ci.org/mirage/charrua-core.svg)](https://travis-ci.org/mirage/charrua-core)

It provides basically two modules, a `Dhcp_wire` responsible for parsing and
constructing DHCP messages and a `Dhcp_server` module used for constructing DHCP
servers.

[charrua-unix](http://www.github.com/haesbaert/charrua-unix) is a Unix DHCP
server based on charrua-core.

[mirage](https://github.com/mirage/mirage-skeleton/tree/master/applications/dhcp)
is a Mirage DHCP unikernel server based on charrua-core.

You can browse the API for [charrua-core](http://www.github.com/mirage/charrua-core) at
http://mirage.github.io/charrua-core/api

#### Features

* Dhcp_server supports a stripped down ISC dhcpd.conf, so you can probably just
  use your old dhcpd.conf, it also supports manual configuration building in
  ocaml.
* Logic/sequencing is agnostic of IO and platform, so it can run on Unix as a
  process, as a Mirage unikernel or anything else.
* Dhcp_wire provides marshalling and unmarshalling utilities for DHCP, it is the
  base for Dhcp_server.
* All DHCP options are supported at the time of this writing.
* Code is purely applicative.
* It's in ocaml, so it's pretty cool.

The name `charrua` is a reference to the, now extinct, semi-nomadic people of
southern South America.

This project became one of the [Mirage Pioneer](https://github.com/mirage/mirage-www/wiki/Pioneer-Projects)
projects."""
url {
  src:
    "https://github.com/mirage/charrua-core/releases/download/v0.8/charrua-core-0.8.tbz"
  checksum: "md5=cefcd421a63a0d4dc255a0bf22d20b04"
}
flags: deprecated
