summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
authorbeck <>2019-01-24 01:50:41 +0000
committerbeck <>2019-01-24 01:50:41 +0000
commit354172b127820c0f48cb417d4d46746e2122f87b (patch)
tree545d5a4b3595d94dfb4578269077b87cbcf48afb /src/lib/libssl/ssl_locl.h
parent9e01a2b9fc249398f995e0d00bee55d7e3c31be0 (diff)
downloadopenbsd-354172b127820c0f48cb417d4d46746e2122f87b.tar.gz
openbsd-354172b127820c0f48cb417d4d46746e2122f87b.tar.bz2
openbsd-354172b127820c0f48cb417d4d46746e2122f87b.zip
move the extensions_seen into the handshake struct
ok jsing@
Diffstat (limited to '')
-rw-r--r--src/lib/libssl/ssl_locl.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index 8447484ec7..5d560f5935 100644
--- a/src/lib/libssl/ssl_locl.h
+++ b/src/lib/libssl/ssl_locl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_locl.h,v 1.231 2019/01/23 18:39:28 beck Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.232 2019/01/24 01:50:41 beck 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 *
@@ -429,6 +429,9 @@ typedef struct ssl_handshake_st {
429 /* key_block is the record-layer key block for TLS 1.2 and earlier. */ 429 /* key_block is the record-layer key block for TLS 1.2 and earlier. */
430 int key_block_len; 430 int key_block_len;
431 unsigned char *key_block; 431 unsigned char *key_block;
432
433 /* Extensions seen in this handshake. */
434 uint32_t extensions_seen;
432} SSL_HANDSHAKE; 435} SSL_HANDSHAKE;
433 436
434typedef struct ssl_handshake_tls13_st { 437typedef struct ssl_handshake_tls13_st {