this repo has no description

Merge pull request #22035 from haesbaert/release-rawlink-v2.1

[new release] rawlink, rawlink-lwt and rawlink-eio (2.1)

Changed files
+139 -1
packages
charrua-unix
charrua-unix.1.5.0
rawlink
rawlink.2.1
rawlink-eio
rawlink-eio.2.1
rawlink-lwt
rawlink-lwt.2.1
+1 -1
packages/charrua-unix/charrua-unix.1.5.0/opam
···
"charrua-server" {= version}
"cstruct-unix"
"cmdliner"
-
"rawlink" {>= "1.0"}
+
"rawlink" {>= "1.0" & <= "1.2" }
"tuntap" {>= "2.0.0"}
"mtime" {>= "1.0.0"}
"cstruct-lwt" {>= "6.0.0"}
+44
packages/rawlink/rawlink.2.1/opam
···
+
opam-version: "2.0"
+
maintainer: "Christiano F. Haesbaert <haesbaert@haesbaert.org>"
+
authors: "Christiano F. Haesbaert <haesbaert@haesbaert.org>"
+
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"}
+
"cstruct" {>= "6.1.0"}
+
"ppx_cstruct"
+
]
+
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.
+
"""
+
url {
+
src:
+
"https://github.com/haesbaert/rawlink/releases/download/v2.1/rawlink-2.1.tbz"
+
checksum: [
+
"sha256=046b9450e71bb13f2d44efcd49e5ce75850d38bf2bf53da9e62fd96a51b386ce"
+
"sha512=9445a8362f68dcad827bbbf7e5583f2c3986c496dcfc8edc4a270824ad3ff97b3caca3e6c925924913a42cbd86adee91719922e979728056b11ec36e87054846"
+
]
+
}
+
x-commit-hash: "b97abd0505b457842b901296dfb002691c4af637"