summaryrefslogtreecommitdiff
path: root/lib/_tls_common.js
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2017-01-17 12:04:40 -0800
committerShigeki Ohtsu <ohtsu@ohtsu.org>2017-01-23 15:17:07 +0900
commita57e2f2138c37e636e1f7684ab07cb36eea79716 (patch)
tree93c0a5cbffcac2d2d97a2368c54b34675ccf8489 /lib/_tls_common.js
parent6b6123cfbe90141464bb86400a5f26c835c50f37 (diff)
downloadandroid-node-v8-a57e2f2138c37e636e1f7684ab07cb36eea79716.tar.gz
android-node-v8-a57e2f2138c37e636e1f7684ab07cb36eea79716.tar.bz2
android-node-v8-a57e2f2138c37e636e1f7684ab07cb36eea79716.zip
crypto: freelist_max_len is gone in OpenSSL 1.1.0
The freelist_max_len member of SSL* (and the freelist itself) has been removed in OpenSSL 1.1.0. Thus this change will be necessary at some point but, for now, it makes it a little easier to build with 1.1.0 without breaking anything for previous versions of OpenSSL. PR-URL: https://github.com/nodejs/node/pull/10859 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Shigeki Ohtsu <ohtsu@ohtsu.org>
Diffstat (limited to 'lib/_tls_common.js')
-rw-r--r--lib/_tls_common.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/_tls_common.js b/lib/_tls_common.js
index 85ae71f8d1..107c3bb2ea 100644
--- a/lib/_tls_common.js
+++ b/lib/_tls_common.js
@@ -134,7 +134,9 @@ exports.createSecureContext = function createSecureContext(options, context) {
}
}
- // Do not keep read/write buffers in free list
+ // Do not keep read/write buffers in free list for OpenSSL < 1.1.0. (For
+ // OpenSSL 1.1.0, buffers are malloced and freed without the use of a
+ // freelist.)
if (options.singleUse) {
c.singleUse = true;
c.context.setFreeListLength(0);