diff options
author | Fedor Indutny <fedor.indutny@gmail.com> | 2013-01-22 17:27:05 +0400 |
---|---|---|
committer | isaacs <i@izs.me> | 2013-01-24 08:47:07 -0800 |
commit | 82f1d340c1278af046916798f488b196e21ebf19 (patch) | |
tree | 2689f7c540136e262da9d9eeaf5f711c5a45e144 /doc/api/tls.markdown | |
parent | 5d3c51d937fe887b3bc16344b519d1ad20fa9ff6 (diff) | |
download | node-new-82f1d340c1278af046916798f488b196e21ebf19.tar.gz |
tls: make slab buffer's size configurable
see #4636
Diffstat (limited to 'doc/api/tls.markdown')
-rw-r--r-- | doc/api/tls.markdown | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/api/tls.markdown b/doc/api/tls.markdown index 2908fb4cdb..ac9d642867 100644 --- a/doc/api/tls.markdown +++ b/doc/api/tls.markdown @@ -214,6 +214,15 @@ You can test this server by connecting to it with `openssl s_client`: openssl s_client -connect 127.0.0.1:8000 +## tls.SLAB_BUFFER_SIZE + +Size of slab buffer used by all tls servers and clients. +Default: `10 * 1024 * 1024`. + + +Don't change the defaults unless you know what you are doing. + + ## tls.connect(options, [callback]) ## tls.connect(port, [host], [options], [callback]) |