diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2021-05-10 17:10:58 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2021-05-10 17:10:58 +0000 |
commit | 6ac324569aa2d5a779a481b68b8e182fc523d8e4 (patch) | |
tree | 41c0ae35fdc54707cb48176cd344efd961e57374 /lib/libssl/ssl3.h | |
parent | 671be8a8c62dacf25964a9995a7ba960abbdc193 (diff) |
Make SSL_CIPHER, SSL_CTX, SSL_SESSION, {DTLS1,SSL3}_STATE
and a few other structs in libssl opaque.
from/ok jsing
Diffstat (limited to 'lib/libssl/ssl3.h')
-rw-r--r-- | lib/libssl/ssl3.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/ssl3.h b/lib/libssl/ssl3.h index fc40c20d6ce..631f8dee235 100644 --- a/lib/libssl/ssl3.h +++ b/lib/libssl/ssl3.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl3.h,v 1.52 2021/05/02 18:10:32 tb Exp $ */ +/* $OpenBSD: ssl3.h,v 1.53 2021/05/10 17:10:57 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -355,7 +355,7 @@ typedef struct ssl3_buffer_st { #define TLS1_FLAGS_FREEZE_TRANSCRIPT 0x0020 #define SSL3_FLAGS_CCS_OK 0x0080 -#ifndef OPENSSL_NO_SSL_INTERN +#ifdef LIBRESSL_INTERNAL struct ssl3_state_internal_st; |