Pure OCaml ARP table lookup - reads /proc/net/arp on Linux and arp -a on macOS/BSD
1
fork

Configure Feed

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

arp: fix README — Arp.read → Arp.table

+1 -1
+1 -1
README.md
··· 15 15 ## Usage 16 16 17 17 ```ocaml 18 - let entries = Arp.read () in 18 + let entries = Arp.table () in 19 19 List.iter 20 20 (fun (e : Arp.entry) -> 21 21 Printf.printf "%s -> %s\n" e.ip e.mac)