# over when using `cp`. This causes a check failure when tlsproxy_add() is
# called again with the same hostname. Instead use redirection which
# doesn't use `cp`.
- "$srcdir/../src/tlsproxy-add" "$1" < "$srcdir/$2" >/dev/null 2>&1
+ "$srcdir/../src/tlsproxy-add" "$1" <"$srcdir/$2" >/dev/null 2>&1
}
tlsproxy_background() {
#valgrind --leak-check=full --error-exitcode=1 --track-fds=yes \
pid_server=$!
}
client() {
- ./client ./proxy-ca.pem "$@" > tmp 2>&1
+ ./client ./proxy-ca.pem "$@" >tmp 2>&1
}
wait_for_ports() {
cleanup
tlsproxy_setup
-echo 'dXNlcm5hbWU6cGFzc3dvcmQ=' > digest-authentication
+echo 'dXNlcm5hbWU6cGFzc3dvcmQ=' >digest-authentication
tlsproxy_background -a digest-authentication 4711
server_background --x509certfile "$srcdir/server.pem" \
--x509keyfile "$srcdir/server-key.pem"