Create one permanent proxy socket per TLSProxy::Proxy instance
authorRichard Levitte <levitte@openssl.org>
Wed, 17 Jan 2018 10:22:47 +0000 (11:22 +0100)
committerRichard Levitte <levitte@openssl.org>
Fri, 19 Jan 2018 09:15:09 +0000 (10:15 +0100)
commit09f1a0937deb8c10a30c1f405aff3163d346bbdf
tree7d0f47625facd869e120673b58218b3f5721a3e2
parent2087582d0455111d6627a142668fdf0ebff1d89f
Create one permanent proxy socket per TLSProxy::Proxy instance

On Windows, we sometimes see a behavior with SO_REUSEADDR where there
remains lingering listening sockets on the same address and port as a
newly created one.

To avoid this scenario, we don't create a new proxy port for each new
client run.  Instead, we create one proxy socket when the proxy object
is created, and close it when destroying that object.

Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de>
(Merged from https://github.com/openssl/openssl/pull/5095)

(cherry picked from commit c7454e1af74b1b99f3f47f782a6ac484c4c55b7f)
util/perl/TLSProxy/Proxy.pm