tlsbench/run.sh
2025-11-05 14:28:26 +01:00

8 lines
353 B
Bash

#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