diff options
author | Richard Levitte <levitte@openssl.org> | 2015-08-10 11:46:27 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-08-11 21:27:46 +0200 |
commit | c0cbb4c19bb6e22b338dd17c096be323f7414faf (patch) | |
tree | fb69e70b5e3cfd36962384657ed3796dc6ca8480 /util/TLSProxy | |
parent | Add a test for 0 p value in anon DH SKE (diff) | |
download | openssl-c0cbb4c19bb6e22b338dd17c096be323f7414faf.tar.xz openssl-c0cbb4c19bb6e22b338dd17c096be323f7414faf.zip |
Use dynamic engine for libssl test harness
Use a dynamic engine for ossltest engine so that we can build it without
subsequently deploying it during install. We do not want people accidentally
using this engine.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'util/TLSProxy')
-rw-r--r-- | util/TLSProxy/Proxy.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/TLSProxy/Proxy.pm b/util/TLSProxy/Proxy.pm index 8c4f55db08..c033c29dd7 100644 --- a/util/TLSProxy/Proxy.pm +++ b/util/TLSProxy/Proxy.pm @@ -130,7 +130,7 @@ sub start open(STDOUT, ">", File::Spec->devnull()) or die "Failed to redirect stdout"; open(STDERR, ">&STDOUT"); - my $execcmd = $self->execute." s_server -testmode -accept " + my $execcmd = $self->execute." s_server -engine ossltest -accept " .($self->server_port) ." -cert ".$self->cert." -naccept 1"; if ($self->ciphers ne "") { @@ -167,7 +167,7 @@ sub start or die "Failed to redirect stdout"; open(STDERR, ">&STDOUT"); my $execcmd = $self->execute - ." s_client -testmode -connect " + ." s_client -engine ossltest -connect " .($self->proxy_addr).":".($self->proxy_port); if ($self->cipherc ne "") { $execcmd .= " -cipher ".$self->cipherc; |