tor/src/trunnel
Mike Perry 9eb0eeb68e Update Trunnel for new machine_ctr field.
This field area was memset to 0 in old versions, which the code treats as
"match any machine instance", for backward compatibility without a protover
bump.
2020-06-08 18:05:34 -05:00
..
hs practracker: Add missing .may_include files 2019-12-04 12:15:22 -05:00
.may_include practracker: Add missing .may_include files 2019-12-04 12:15:22 -05:00
channelpadding_negotiation.c trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
channelpadding_negotiation.h trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
channelpadding_negotiation.trunnel Netflow record collapsing defense. 2017-05-08 13:49:21 -04:00
circpad_negotiation.c Update Trunnel for new machine_ctr field. 2020-06-08 18:05:34 -05:00
circpad_negotiation.h Update Trunnel for new machine_ctr field. 2020-06-08 18:05:34 -05:00
circpad_negotiation.trunnel Update Trunnel for new machine_ctr field. 2020-06-08 18:05:34 -05:00
ed25519_cert.c trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
ed25519_cert.h trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
ed25519_cert.trunnel hs: abolish hs_desc_link_specifier_dup() 2019-03-12 11:09:53 -04:00
include.am trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
link_handshake.c trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
link_handshake.h trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
link_handshake.trunnel Add trunnel-generated items for link handshake code. 2015-05-28 10:41:49 -04:00
netinfo.c trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
netinfo.h trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
netinfo.trunnel Actually allow unrecognized address types in NETINFO cell 2018-12-18 12:10:08 +02:00
pwbox.c trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
pwbox.h trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
pwbox.trunnel Use trunnel for crypto_pwbox encoding/decoding. 2014-09-25 11:58:14 -04:00
README Mention trunnel in CodingStandards; describe how in trunnel/README 2015-10-14 10:40:27 -04:00
sendme_cell.c trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
sendme_cell.h trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
sendme_cell.trunnel trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
socks5.c trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
socks5.h trunnel: Rename sendme.trunnel to sendme_cell.trunnel 2019-06-11 14:11:10 +03:00
socks5.trunnel Allow socks4_server_reply version to be 0 (for tor-resolve) 2018-12-01 14:31:17 -05:00
trunnel-local.h log: Close log and err file descriptors before aborting 2019-09-09 14:56:42 +10:00

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