From b53044323c28b508e703fbca43e14133fadeff1d Mon Sep 17 00:00:00 2001 From: ppom Date: Thu, 5 Jun 2025 12:00:00 +0200 Subject: [PATCH] Add small doc for C helpers --- helpers_c/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 helpers_c/README.md diff --git a/helpers_c/README.md b/helpers_c/README.md new file mode 100644 index 0000000..2407f19 --- /dev/null +++ b/helpers_c/README.md @@ -0,0 +1,12 @@ +# C helpers + +Those helpers permit to handle IPv4 & IPv6 at the same time, waiting for [#79](https://framagit.org/ppom/reaction/-/issues/79) to be addressed. + +Compilation: + +```bash +# Produces nft46 binary +gcc -o nft46 nft46.c +# Produces ip46tables binary +gcc -o ip46tables ip46tables.c +```