diff options
author | 2017-01-23 05:27:22 +0000 | |
---|---|---|
committer | 2017-01-23 05:27:22 +0000 | |
commit | c24cef59b7f656e0c032c620d4e243703c487e65 (patch) | |
tree | 7d080f55683a7c63d9977848209645775e8b0dcf /lib/libssl/ssl.h | |
parent | rework how we address physical disks on the second scsibus. (diff) | |
download | wireguard-openbsd-c24cef59b7f656e0c032c620d4e243703c487e65.tar.xz wireguard-openbsd-c24cef59b7f656e0c032c620d4e243703c487e65.zip |
Move ex_data, next and prev from SSL_SESSION to internal.
ok beck@
Diffstat (limited to 'lib/libssl/ssl.h')
-rw-r--r-- | lib/libssl/ssl.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h index 9fc6c5e9766..99ac44d7697 100644 --- a/lib/libssl/ssl.h +++ b/lib/libssl/ssl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl.h,v 1.112 2017/01/23 05:13:02 jsing Exp $ */ +/* $OpenBSD: ssl.h,v 1.113 2017/01/23 05:27:22 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -496,11 +496,6 @@ struct ssl_session_st { STACK_OF(SSL_CIPHER) *ciphers; /* shared ciphers? */ - CRYPTO_EX_DATA ex_data; /* application specific data */ - - /* These are used to make removal of session-ids more - * efficient and to implement a maximum cache size. */ - struct ssl_session_st *prev, *next; char *tlsext_hostname; /* RFC4507 info */ |