System ARP cache reader
0

Configure Feed

Select the types of activity you want to include in your feed.

docs: add the opam overlay repo to README install steps

These packages are published only to the opam overlay, not the public
opam-repository. Without the repo-add line a reader who runs opam install
gets nothing and has to hunt down the overlay URL by hand.

+19
+19
README.md
··· 10 10 `table`, `lookup` and `lookup_mac` touch the operating system. For the ARP 11 11 *wire protocol* codec, see [`nox-arp`](../ocaml-arp/README.md). 12 12 13 + ## Installation 14 + 15 + Install with opam: 16 + 17 + <!-- $MDX skip --> 18 + ```sh 19 + $ opam install arp-cache 20 + ``` 21 + 22 + If opam cannot find the package, it may not yet be released in the public 23 + `opam-repository`. Add the overlay repository, then install it: 24 + 25 + <!-- $MDX skip --> 26 + ```sh 27 + $ opam repo add samoht https://tangled.org/gazagnaire.org/opam-overlay.git 28 + $ opam update 29 + $ opam install arp-cache 30 + ``` 31 + 13 32 ## Usage 14 33 15 34 `Arp_cache.table ()` returns the cache as a list of `{ ip; mac; interface }`