diff options
Diffstat (limited to 'lib/libssl/ssl.h')
-rw-r--r-- | lib/libssl/ssl.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h index 037f46c400b..28b7de66675 100644 --- a/lib/libssl/ssl.h +++ b/lib/libssl/ssl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl.h,v 1.118 2017/01/23 13:36:13 jsing Exp $ */ +/* $OpenBSD: ssl.h,v 1.119 2017/01/23 14:35:42 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -672,9 +672,6 @@ struct ssl_ctx_st { /* Default values to use in SSL structures follow (these are copied by SSL_new) */ - unsigned long options; - unsigned long mode; - STACK_OF(X509) *extra_certs; int verify_mode; @@ -852,10 +849,10 @@ struct ssl_st { long verify_result; int references; - unsigned long options; /* protocol behaviour */ - unsigned long mode; /* API behaviour */ + int client_version; /* what was passed, used for * SSLv3/TLS rollback check */ + unsigned int max_send_fragment; char *tlsext_hostname; |