final update to documentation before version release
This commit is contained in:
parent
26e054bd76
commit
c157c00f69
3 changed files with 22 additions and 18 deletions
File diff suppressed because one or more lines are too long
|
@ -1203,7 +1203,8 @@ template<class C , size_t SessionCache = 1> </div>
|
||||||
</div><div class="memdoc">
|
</div><div class="memdoc">
|
||||||
|
|
||||||
<p>Add a client certificate and enable support for mutual auth. </p>
|
<p>Add a client certificate and enable support for mutual auth. </p>
|
||||||
<p>This function must be called BEFORE making an SSL connection. </p>
|
<p>Please ensure that the values in <code>params</code> are valid for the lifetime of <a class="el" href="class_s_s_l_client.html" title="The main SSLClient class. Check out README.md for more info.">SSLClient</a>. You may want to make them global constants.</p>
|
||||||
|
<dl class="section pre"><dt>Precondition</dt><dd><a class="el" href="class_s_s_l_client.html" title="The main SSLClient class. Check out README.md for more info.">SSLClient</a> has not already started an SSL connection. </dd></dl>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -292,7 +292,10 @@ public:
|
||||||
/**
|
/**
|
||||||
* @brief Add a client certificate and enable support for mutual auth
|
* @brief Add a client certificate and enable support for mutual auth
|
||||||
*
|
*
|
||||||
* This function must be called BEFORE making an SSL connection.
|
* Please ensure that the values in `params` are valid for the lifetime
|
||||||
|
* of SSLClient. You may want to make them global constants.
|
||||||
|
*
|
||||||
|
* @pre SSLClient has not already started an SSL connection.
|
||||||
*/
|
*/
|
||||||
void setMutualAuthParams(const SSLClientParameters* params) { return set_mutual_impl(params); }
|
void setMutualAuthParams(const SSLClientParameters* params) { return set_mutual_impl(params); }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue