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