Mentioned that the SSL_MODE_ENABLE_PARTIAL_WRITE mode may also be useful

This commit is contained in:
Pierre Pronchery 2014-07-10 23:16:59 +02:00
parent 82a780deca
commit 548f92d144

View File

@ -209,6 +209,9 @@ static SSLTransport * _ssl_init(AppTransportPluginHelper * helper,
_ssl_destroy(ssl);
return NULL;
}
#if 0 /* XXX may be useful */
SSL_CTX_set_mode(ssl->ssl_ctx, SSL_MODE_ENABLE_PARTIAL_WRITE);
#endif
return ssl;
}