On Fri, Jun 09, 2017 at 05:02:56PM +0200, Emmanuel Hocdet wrote:
> Why ssl_free_dh (and #include <proto/ssl_sock.h>) suddenly (re)appear in
> haproxy.c
> with this commit? This looks like a remnant of old dev.
It doesn't re-appear with this commit, look, it was already there :
> > -#ifndef OPENSSL_NO_DH
> > +#if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH)
> > ssl_free_dh();
> > #endif
The ssl_free_dh() comes from this patch :
872f9c2 ("MEDIUM: ssl: add basic support for OpenSSL crypto engine")
Willy