diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2017-01-23 05:27:23 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2017-01-23 05:27:23 +0000 |
commit | 55a88ae4474eb17798999076a924b9e4978d1063 (patch) | |
tree | cdebe2e2584a4e2947cc8914aa72b6588cb0100b /lib/libssl/ssl.h | |
parent | 6ff43ed96a0ad204c11369d344e78df83a239b59 (diff) |
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 */ |