aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLibravatarLibravatar daurnimator <quae@daurnimator.com> 2018-10-31 14:17:47 +1100
committerLibravatarLibravatar daurnimator <quae@daurnimator.com> 2018-10-31 14:17:47 +1100
commitb52f98282470289cdd94aca46882347e35cb17a3 (patch)
tree0be4999b833c3a694c02627b2145a3377b610d96 /doc
parent73996edb59a5b03d25650033729eb991cbd29c33 (diff)
downloadluaossl-b52f98282470289cdd94aca46882347e35cb17a3.tar.gz
luaossl-b52f98282470289cdd94aca46882347e35cb17a3.tar.bz2
luaossl-b52f98282470289cdd94aca46882347e35cb17a3.zip
Add ssl:setReadAhead(), ssl:getReadAhead(), context:setReadAhead(), context:getReadAhead()
Diffstat (limited to 'doc')
-rw-r--r--doc/luaossl.tex16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/luaossl.tex b/doc/luaossl.tex
index c3e4463..45c2602 100644
--- a/doc/luaossl.tex
+++ b/doc/luaossl.tex
@@ -914,6 +914,14 @@ Returns the option flags of the context instance as an integer.
Clears the option flags of the context instance.
+\subsubsection[\fn{context:setReadAhead}]{\fn{context:setReadAhead($yes$)}}
+
+Sets if read ahead is enabled for the context, $yes$ should be a boolean.
+
+\subsubsection[\fn{context:getReadAhead}]{\fn{context:getReadAhead()}}
+
+Returns if read ahead is enable for the context instance as a boolean.
+
\subsubsection[\fn{context:setStore}]{\fn{context:setStore($store$)}}
Associate the \module{openssl.x509.store} object $store$ with $context$. Replaces any existing store.
@@ -1112,6 +1120,14 @@ Returns the option flags of the SSL connection instance. See \fn{openssl.ssl.con
Clears the option flags of the SSL connection instance. See \fn{openssl.ssl.context:clearOptions}.
+\subsubsection[\fn{ssl:setReadAhead}]{\fn{ssl:setReadAhead($yes$)}}
+
+Sets if read ahead is enabled for the SSL connection instance, $yes$ should be a boolean.
+
+\subsubsection[\fn{ssl:getReadAhead}]{\fn{ssl:getReadAhead()}}
+
+Returns if read ahead is enable for the SSL connection instance as a boolean.
+
\subsubsection[\fn{ssl:setStore}]{\fn{ssl:setStore($store$)}}
Associate the \module{openssl.x509.store} object $store$ with $ssl$ for both verification and chain building. Replaces any existing stores.