this repo has no description
1opam-version: "2.0"
2maintainer: "anil@recoil.org"
3homepage: "https://github.com/mirage/mirage-tcpip"
4dev-repo: "git+https://github.com/mirage/mirage-tcpip.git"
5bug-reports: "https://github.com/mirage/mirage-tcpip/issues"
6authors: [
7 "Anil Madhavapeddy" "Balraj Singh" "Richard Mortier" "Nicolas Ojeda Bar"
8 "Thomas Gazagnaire" "Vincent Bernardoff" "Magnus Skjegstad" "Mindy Preston"
9 "Thomas Leonard" "David Scott" "Gabor Pali" "Hannes Mehnert" "Haris Rotsos"
10 "Kia" "Luke Dunstan" "Pablo Polvorin" "Tim Cuthbertson" "lnmx" "pqwy" ]
11license: "ISC"
12tags: ["org:mirage"]
13
14build: [
15 ["jbuilder" "subst" "-p" name] {dev}
16 ["env" "OPAM_PKG_CONFIG_PATH=%{prefix}%/lib/pkgconfig" "jbuilder" "build" "-p" name "-j" jobs]
17 ["env" "OPAM_PKG_CONFIG_PATH=%{prefix}%/lib/pkgconfig" "jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
18]
19
20depopts: ["mirage-xen-ocaml"]
21
22depends: [
23 "ocaml" {>= "4.03.0"}
24 "jbuilder" {>= "1.0+beta10"}
25 "configurator" {build}
26 "rresult" {>= "0.5.0"}
27 "cstruct" {>= "3.0.2"}
28 "cstruct-lwt"
29 "mirage-net" {>= "1.0.0" & < "2.0.0"}
30 "mirage-net-lwt" {>= "1.0.0" & < "2.0.0"}
31 "mirage-clock" {>= "1.2.0" & < "3.0.0"}
32 "mirage-random" {>= "1.0.0" & < "1.2.0"}
33 "mirage-clock-lwt" {>= "1.2.0"}
34 "mirage-stack-lwt" {>= "1.2.0" & < "1.3.0"}
35 "mirage-protocols" {>= "1.3.0" & < "1.4.0"}
36 "mirage-protocols-lwt" {>= "1.3.0" & < "1.4.0"}
37 "mirage-time-lwt" {>= "1.0.0"}
38 "ipaddr" {>= "2.2.0" & < "3.0.0"}
39 "mirage-profile" {>= "0.5"}
40 "fmt" {>= "0.8.0"}
41 "lwt" {>= "3.0.0" & < "5.0.0"}
42 "logs" {>= "0.6.0"}
43 "duration"
44 "io-page-unix"
45 "randomconv" {< "0.2.0"}
46 "mirage-flow" {with-test & >= "1.2.0" & < "2.0.0"}
47 "mirage-vnetif" {with-test & >= "0.4.0"}
48 "alcotest" {with-test & >= "0.7.0" & < "1.4.0"}
49 "pcap-format" {with-test}
50 "mirage-clock-unix" {with-test & >= "1.2.0" & < "2.0.0"}
51 "ocaml-migrate-parsetree" {< "2.0.0"}
52]
53synopsis: "An OCaml TCP/IP networking stack"
54description: """
55`mirage-tcpip` provides a networking stack for the [Mirage operating
56system](https://mirage.io). It provides implementations for the following module types
57(which correspond with the similarly-named protocols):
58
59* ETHERNET
60* ARP
61* IP (via the IPv4 and IPv6 modules)
62* ICMP
63* UDP
64* TCP
65
66## Implementations
67
68There are two implementations of the IP, ICMP, UDP, and TCP module types -
69the `socket` stack, and the `direct` stack.
70
71### The `socket` stack
72
73The `socket` stack uses socket calls to a traditional operating system to
74provide the functionality described in the module types.
75
76See the [`src/stack-unix/`](./src/stack-unix/) directory for the modules used as implementations of the
77`socket` stack.
78
79The `socket` stack is used for testing or other applications which do not
80expect to run as unikernels.
81
82### The `direct` stack
83
84The `direct` stack expects to write to a device implementing the `NETIF` module
85type defined for MirageOS.
86
87See the [`src/`](./src/) directory for the modules used as implementations of the
88`direct` stack, which is the expected stack for most MirageOS applications.
89
90The `direct` stack is the only usable set of implementations for
91applications which will run as unikernels on a hypervisor target.
92
93## Community
94
95* WWW: <https://mirage.io>
96* E-mail: <mirageos-devel@lists.xenproject.org>
97* Issues: <https://github.com/mirage/mirage-tcpip/issues>
98* API docs: <http://docs.mirage.io/tcpip/index.html>
99
100## License
101
102`mirage-tcpip` is distributed under the ISC license."""
103url {
104 src:
105 "https://github.com/mirage/mirage-tcpip/releases/download/v3.4.2/tcpip-3.4.2.tbz"
106 checksum: [
107 "sha256=7438f1d75634c58a11cd4697df020da155a7cddeba74cb46d6467b72184333d4"
108 "md5=593f6f9982d657860f98f04cf51ce30d"
109 ]
110}