diff options
Diffstat (limited to 'src/lib/libssl/ssl_local.h')
-rw-r--r-- | src/lib/libssl/ssl_local.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_local.h b/src/lib/libssl/ssl_local.h index c002c9b34f..e9b6a62bbe 100644 --- a/src/lib/libssl/ssl_local.h +++ b/src/lib/libssl/ssl_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_local.h,v 1.19 2024/07/16 14:38:04 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_local.h,v 1.20 2024/07/19 08:54:31 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -443,8 +443,6 @@ struct ssl_session_st { | |||
443 | * needs to be used to load | 443 | * needs to be used to load |
444 | * the 'cipher' structure */ | 444 | * the 'cipher' structure */ |
445 | 445 | ||
446 | STACK_OF(SSL_CIPHER) *ciphers; /* shared ciphers? */ | ||
447 | |||
448 | char *tlsext_hostname; | 446 | char *tlsext_hostname; |
449 | 447 | ||
450 | /* Session resumption - RFC 5077 and RFC 8446. */ | 448 | /* Session resumption - RFC 5077 and RFC 8446. */ |
@@ -568,6 +566,9 @@ typedef struct ssl_handshake_st { | |||
568 | /* Cipher being negotiated in this handshake. */ | 566 | /* Cipher being negotiated in this handshake. */ |
569 | const SSL_CIPHER *cipher; | 567 | const SSL_CIPHER *cipher; |
570 | 568 | ||
569 | /* Ciphers sent by the client. */ | ||
570 | STACK_OF(SSL_CIPHER) *client_ciphers; | ||
571 | |||
571 | /* Extensions seen in this handshake. */ | 572 | /* Extensions seen in this handshake. */ |
572 | uint32_t extensions_seen; | 573 | uint32_t extensions_seen; |
573 | 574 | ||