mirror of https://github.com/Icinga/icinga2.git
Merge pull request #9885 from Icinga/renegotiation
This commit is contained in:
commit
871fa67b52
|
@ -11,6 +11,8 @@
|
|||
#include <boost/asio/ssl/context.hpp>
|
||||
#include <openssl/opensslv.h>
|
||||
#include <openssl/crypto.h>
|
||||
#include <openssl/ssl.h>
|
||||
#include <openssl/ssl3.h>
|
||||
#include <fstream>
|
||||
|
||||
namespace icinga
|
||||
|
@ -91,6 +93,16 @@ static void InitSslContext(const Shared<boost::asio::ssl::context>::Ptr& context
|
|||
|
||||
flags |= SSL_OP_CIPHER_SERVER_PREFERENCE;
|
||||
|
||||
#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
SSL_CTX_set_info_callback(sslContext, [](const SSL* ssl, int where, int) {
|
||||
if (where & SSL_CB_HANDSHAKE_DONE) {
|
||||
ssl->s3->flags |= SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS;
|
||||
}
|
||||
});
|
||||
#else /* OPENSSL_VERSION_NUMBER < 0x10100000L */
|
||||
flags |= SSL_OP_NO_RENEGOTIATION;
|
||||
#endif /* OPENSSL_VERSION_NUMBER < 0x10100000L */
|
||||
|
||||
SSL_CTX_set_options(sslContext, flags);
|
||||
|
||||
SSL_CTX_set_mode(sslContext, SSL_MODE_ENABLE_PARTIAL_WRITE | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER);
|
||||
|
|
Loading…
Reference in New Issue