Initial commit

This commit is contained in:
Pascal Engélibert 2025-11-05 14:28:26 +01:00
commit a71491c068
13 changed files with 1470 additions and 0 deletions

8
run.sh Normal file
View file

@ -0,0 +1,8 @@
#kissdns kissdns.json 5532
RUST_LOG=debug ./rpxy_rustls_ring --config experiments/p1_tls.toml &
RUST_LOG=debug ./rpxy_rustls_ring --config experiments/p2_tls.toml &
RUST_LOG=debug ./rpxy_rustls_ring --config experiments/p3.toml &
# By default, ^C does not kill subprocesses. This fixes it.
trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM EXIT
wait