this repo has no description
1opam-version: "2.0" 2maintainer: "Christiano F. Haesbaert <haesbaert@haesbaert.org>" 3authors: "Christiano F. Haesbaert <haesbaert@haesbaert.org>" 4license: "ISC" 5homepage: "https://github.com/mirage/charrua-core" 6bug-reports: "https://github.com/mirage/charrua-core/issues" 7dev-repo: "git+https://github.com/mirage/charrua-core.git" 8doc: "https://mirage.github.io/charrua-core/api" 9 10build: [ 11 ["jbuilder" "subst" "-n" name] {dev} 12 ["jbuilder" "build" "-p" name "-j" jobs] 13 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 14] 15 16depends: [ 17 "jbuilder" {>= "1.0+beta7"} 18 "ppx_sexp_conv" {build} 19 "ppx_cstruct" {build} 20 "menhir" {build} 21 "ocaml" {>= "4.0.3"} 22 "cstruct" {>= "3.0.1" & < "4.0.0"} 23 "sexplib" 24 "ipaddr" {>= "2.5.0" & < "3.0.0"} 25 "tcpip" {>= "3.2.0" & < "3.6.0"} 26 "rresult" 27 "io-page-unix" {with-test} 28 "cstruct-unix" {with-test} 29] 30synopsis: "DHCP wire frame encoder and decoder" 31description: """ 32Charrua-core consists of two modules, a `Dhcp_wire` responsible for parsing and 33constructing DHCP messages and a `Dhcp_server` module used for constructing DHCP 34servers. 35 36You can browse the API for [charrua-core](http://www.github.com/mirage/charrua-core) at 37http://mirage.github.io/charrua-core/api 38 39[dhcp](https://github.com/mirage/mirage-skeleton/tree/master/applications/dhcp) 40is a Mirage DHCP unikernel server based on charrua-core, included as a part of the MirageOS unikernel example and starting-point repository. 41 42#### Features 43 44* `Dhcp_server` supports a stripped down ISC dhcpd.conf, so you can probably just 45 use your old `dhcpd.conf`. It also supports manual configuration building in 46 OCaml. 47* `Dhcp_wire` provides marshalling and unmarshalling utilities for DHCP, it is the 48 base for `Dhcp_server`. 49* Logic/sequencing is agnostic of IO and platform, so it can run on Unix as a 50 process, as a Mirage unikernel or anything else. 51* All DHCP options are supported at the time of this writing. 52* Code is purely applicative. 53* It's in OCaml, so it's pretty cool. 54 55The name `charrua` is a reference to the, now extinct, semi-nomadic people of 56southern South America. 57""" 58url { 59 src: 60 "https://github.com/mirage/charrua-core/releases/download/v0.11.0/charrua-core-0.11.0.tbz" 61 checksum: [ 62 "sha256=74357da2ada057059592196594cf87d0514d09de15fe86ae321074726e07a876" 63 "md5=f4bb1ac3d1443a576982eae49d0eb7d8" 64 ] 65} 66flags: deprecated