mirror of https://github.com/openssl/openssl.git
Don't declare SSL_CONNECTION twice
It causes problems with some compilation options Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20030)
This commit is contained in:
parent
533390e46f
commit
d6cf4b59a0
|
@ -7,8 +7,6 @@
|
|||
* https://www.openssl.org/source/license.html
|
||||
*/
|
||||
|
||||
typedef struct ssl_connection_st SSL_CONNECTION;
|
||||
|
||||
#include <openssl/core_dispatch.h>
|
||||
#include "internal/recordmethod.h"
|
||||
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
# include <openssl/async.h>
|
||||
# include <openssl/symhacks.h>
|
||||
# include <openssl/ct.h>
|
||||
# include "record/record.h"
|
||||
# include "internal/recordmethod.h"
|
||||
# include "internal/statem.h"
|
||||
# include "internal/packet.h"
|
||||
|
@ -37,6 +36,7 @@
|
|||
# include "internal/bio.h"
|
||||
# include "internal/ktls.h"
|
||||
# include "internal/time.h"
|
||||
# include "record/record.h"
|
||||
|
||||
# ifdef OPENSSL_BUILD_SHLIBSSL
|
||||
# undef OPENSSL_EXTERN
|
||||
|
|
Loading…
Reference in New Issue