]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MEDIUM: ssl: Add support for OpenSSL 1.1.0
authorDirkjan Bussink <d.bussink@gmail.com>
Mon, 29 Aug 2016 11:26:37 +0000 (13:26 +0200)
committerWilly Tarreau <w@1wt.eu>
Tue, 8 Nov 2016 19:54:41 +0000 (20:54 +0100)
commit1866d6d8f1163fe28a1e8256080909a5aa166880
treef3d5324867db898e3098043a9bed237c8f658d00
parente5d3169e1c52a1a2210f2e9375d63b95124ad879
MEDIUM: ssl: Add support for OpenSSL 1.1.0

In the last release a lot of the structures have become opaque for an
end user. This means the code using these needs to be changed to use the
proper functions to interact with these structures instead of trying to
manipulate them directly.

This does not fix any deprecations yet that are part of 1.1.0, it only
ensures that it can be compiled against that version and is still
compatible with older ones.

[wt: openssl-0.9.8 doesn't build with it, there are conflicts on certain
     function prototypes which we declare as inline here and which are
     defined differently there. But openssl-0.9.8 is not supported anymore
     so probably it's OK to go without it for now and we'll see later if
     some users still need it. Emeric has reviewed this change and didn't
     spot anything obvious which requires special care. Let's try it for
     real now]
Makefile
include/proto/openssl-compat.h [new file with mode: 0644]
src/shctx.c
src/ssl_sock.c