Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add package for cli programs. #17

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions bin/dune
Original file line number Diff line number Diff line change
@@ -1,19 +1,27 @@
(executable
(name rawcap)
(modules rawcap)
(package rawlink-bin)
(public_name rawcap)
(libraries rawlink))

(executable
(name rawcap_lwt)
(modules rawcap_lwt)
(package rawlink-bin)
(public_name rawcap-lwt)
(libraries lwt_rawlink))

(executable
(name rawcap_eio)
(modules rawcap_eio)
(package rawlink-bin)
(public_name rawcap-eio)
(libraries eio_rawlink eio_main))

(executable
(name test_arp)
(modules test_arp)
(package rawlink-bin)
(public_name test-arp)
(libraries eio_rawlink eio_main arp ethernet))
2 changes: 2 additions & 0 deletions dune-project
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
(lang dune 3.2)
(name rawlink)

(formatting disabled)
39 changes: 39 additions & 0 deletions rawlink-bin.opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
opam-version: "2.0"
maintainer: "Christiano F. Haesbaert <[email protected]>"
authors: "Christiano F. Haesbaert <[email protected]>"
license: "ISC"
homepage: "https://github.com/haesbaert/rawlink"
bug-reports: "https://github.com/haesbaert/rawlink/issues"
dev-repo: "git+https://github.com/haesbaert/rawlink.git"
doc: "https://haesbaert.github.io/rawlink/"
build: [
[ "dune" "subst" ] {dev}
[ "dune" "build" "-p" name "-j" jobs ] ]
depends: [
"ocaml" {>= "4.09.0"}
"dune" {>= "3.2"}
"rawlink"
"rawlink-eio"
"rawlink-lwt"
"ethernet"
"arp"
"eio_main"
]
depexts: [
["linux-headers"] {os-distribution = "alpine"}
]
synopsis: "Portable library to read and write raw packets"
description: """
Rawlink is an ocaml library for sending and receiving raw packets at the link
layer level. Sometimes you need to have full control of the packet, including
building the full ethernet frame.

The API is platform independent, it uses BPF on real UNIXes and AF_SOCKET on
linux. Some functionality is sacrificed so that the API is portable enough.

Currently BPF and AF_PACKET are implemented, including filtering capabilities.
Writing a BPF program is a pain in the ass, so no facilities are provided for
it. If you need a BPF filter, I suggest you write a small .c file with a
function that returns the BPF program as a string, check `rawlink_stubs.c` for
an example.
"""