mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
df05e195ee
This includes the link handshake variations for proposal220. We'll use this for testing first, and then use it to extend our current code to support prop220.
12 lines
272 B
Bash
Executable File
12 lines
272 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test "x$TRUNNEL_PATH" != "x"; then
|
|
PYTHONPATH="${TRUNNEL_PATH}:${PYTHONPATH}"
|
|
export PYTHONPATH
|
|
fi
|
|
|
|
python -m trunnel --require-version=1.4 ./src/trunnel/*.trunnel
|
|
|
|
python -m trunnel --require-version=1.4 --write-c-files --target-dir=./src/ext/trunnel/
|
|
|