summaryrefslogtreecommitdiffstats
path: root/ssl/ssl.h
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2006-02-07 14:26:43 +0000
committerBodo Möller <bodo@openssl.org>2006-02-07 14:26:43 +0000
commite67ed82877ef266cdb84caed7579afdb5f1fab71 (patch)
treef733ccb1e5f3bd47176dff373c5028ccc45a126a /ssl/ssl.h
parent15ac971681bb81b9ab36383eb7014449ad190f9a (diff)
move new member of SSL_SESSION to the end
(minimize changes to binary format) Submitted by: Peter Sylvester
Diffstat (limited to 'ssl/ssl.h')
-rw-r--r--ssl/ssl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ssl/ssl.h b/ssl/ssl.h
index 9370da1625..e4534f3062 100644
--- a/ssl/ssl.h
+++ b/ssl/ssl.h
@@ -439,9 +439,6 @@ typedef struct ssl_session_st
unsigned int krb5_client_princ_len;
unsigned char krb5_client_princ[SSL_MAX_KRB5_PRINCIPAL_LENGTH];
#endif /* OPENSSL_NO_KRB5 */
-#ifndef OPENSSL_NO_TLSEXT
- char *tlsext_hostname;
-#endif
int not_resumable;
@@ -475,6 +472,9 @@ typedef struct ssl_session_st
/* These are used to make removal of session-ids more
* efficient and to implement a maximum cache size. */
struct ssl_session_st *prev,*next;
+#ifndef OPENSSL_NO_TLSEXT
+ char *tlsext_hostname;
+#endif
} SSL_SESSION;