From b52f98282470289cdd94aca46882347e35cb17a3 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Wed, 31 Oct 2018 14:17:47 +1100 Subject: Add ssl:setReadAhead(), ssl:getReadAhead(), context:setReadAhead(), context:getReadAhead() --- doc/luaossl.tex | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'doc') 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. -- cgit v1.2.3-59-g8ed1b