aboutsummaryrefslogtreecommitdiffstats
path: root/doc/luaossl.tex
diff options
context:
space:
mode:
Diffstat (limited to 'doc/luaossl.tex')
-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.