mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
6bacc3c7a8
One of the goals of this change is to have trunnel API/ABI being more explicit so we namespace them with "trn_*". Furthermore, we can now create hs_cells.[ch] without having to confuse it with trunnel which used to be "hs_cell_*" before that change. Here are the perl line that were used for this rename: perl -i -pe 's/cell_extension/trn_cell_extension/g;' src/*/*.[ch] perl -i -pe 's/cell_extension/trn_cell_extension/g;' src/trunnel/hs/*.trunnel perl -i -pe 's/hs_cell_/trn_cell_/g;' src/*/*.[ch] perl -i -pe 's/hs_cell_/trn_cell_/g;' src/trunnel/hs/*.trunnel And then "./scripts/codegen/run_trunnel.sh" with trunnel commit id 613fb1b98e58504e2b84ef56b1602b6380629043. Fixes #21919 Signed-off-by: David Goulet <dgoulet@torproject.org> |
||
---|---|---|
.. | ||
hs | ||
ed25519_cert.c | ||
ed25519_cert.h | ||
ed25519_cert.trunnel | ||
include.am | ||
link_handshake.c | ||
link_handshake.h | ||
link_handshake.trunnel | ||
pwbox.c | ||
pwbox.h | ||
pwbox.trunnel | ||
README | ||
trunnel-local.h |
This directory contains code for use with, and code made by, the automatic code generation tool "Trunnel". Trunnel generates binary parsers and formatters for simple data structures. It aims for human-readable, obviously-correct outputs over maximum efficiency or flexibility. The .trunnel files are the inputs here; the .c and .h files are the outputs. To add a new structure: - Add a new .trunnel file or expand an existing one to describe the format of the structure. - Regenerate the .c and .h files. To do this, you run "scripts/codegen/run_trunnel.sh". You'll need trunnel installed. - Add the .trunnel, .c, and .h files to include.am For the Trunnel source code, and more documentation about using Trunnel, see https://gitweb.torproject.org/trunnel.git , especially https://gitweb.torproject.org/trunnel.git/tree/README and https://gitweb.torproject.org/trunnel.git/tree/doc/trunnel.md