BUILD: quic: use openssl-compat.h instead of openssl/ssl.h

Replace the include of openssl/ssl.h by openssl-compat.h.

Signed-off-by: William Lallemand <wlallemand@haproxy.org>
This commit is contained in:
Uriah Pollock 2022-11-23 17:10:07 +01:00 committed by William Lallemand
parent 33a6870fea
commit 79320cb074
2 changed files with 2 additions and 2 deletions

View File

@ -27,11 +27,11 @@
#endif
#include <sys/socket.h>
#include <openssl/ssl.h>
#include <haproxy/cbuf-t.h>
#include <haproxy/list.h>
#include <haproxy/openssl-compat.h>
#include <haproxy/mux_quic-t.h>
#include <haproxy/quic_cc-t.h>
#include <haproxy/quic_frame-t.h>

View File

@ -21,10 +21,10 @@
#include <stdlib.h>
#include <string.h>
#include <openssl/ssl.h>
#include <haproxy/dynbuf.h>
#include <haproxy/pool.h>
#include <haproxy/openssl-compat.h>
#include <haproxy/quic_conn-t.h>
#include <haproxy/quic_tls-t.h>
#include <haproxy/trace.h>