Change version number to 0.7

This commit is contained in:
Bruno Silvestre
2018-06-27 10:36:26 -03:00
parent fbbaa866c3
commit de63f21f63
17 changed files with 54 additions and 47 deletions

View File

@ -2,9 +2,9 @@
#define LSEC_OPTIONS_H
/*--------------------------------------------------------------------------
* LuaSec 0.7alpha
* LuaSec 0.7
*
* Copyright (C) 2006-2017 Bruno Silvestre
* Copyright (C) 2006-2018 Bruno Silvestre
*
*--------------------------------------------------------------------------*/
@ -13,7 +13,7 @@
/* If you need to generate these options again, see options.lua */
/*
OpenSSL version: OpenSSL 1.1.0f
OpenSSL version: OpenSSL 1.1.0h
*/
struct ssl_option_s {
@ -83,9 +83,15 @@ static ssl_option_t ssl_options[] = {
#if defined(SSL_OP_NO_DTLSv1_2)
{"no_dtlsv1_2", SSL_OP_NO_DTLSv1_2},
#endif
#if defined(SSL_OP_NO_ENCRYPT_THEN_MAC)
{"no_encrypt_then_mac", SSL_OP_NO_ENCRYPT_THEN_MAC},
#endif
#if defined(SSL_OP_NO_QUERY_MTU)
{"no_query_mtu", SSL_OP_NO_QUERY_MTU},
#endif
#if defined(SSL_OP_NO_RENEGOTIATION)
{"no_renegotiation", SSL_OP_NO_RENEGOTIATION},
#endif
#if defined(SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION)
{"no_session_resumption_on_renegotiation", SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION},
#endif