Deployed f090c76
with MkDocs version: 1.1.2
This commit is contained in:
parent
4d51179819
commit
a65bc2ab16
@ -95,6 +95,10 @@
|
||||
|
||||
<li class="nav-item" data-level="1"><a href="#changelog" class="nav-link">Changelog</a>
|
||||
<ul class="nav flex-column">
|
||||
<li class="nav-item" data-level="2"><a href="#1109-2021-03-07" class="nav-link">[11.0.9] - 2021-03-07</a>
|
||||
<ul class="nav flex-column">
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item" data-level="2"><a href="#1108-2020-12-25" class="nav-link">[11.0.8] - 2020-12-25</a>
|
||||
<ul class="nav flex-column">
|
||||
</ul>
|
||||
@ -1112,6 +1116,8 @@
|
||||
|
||||
<h1 id="changelog">Changelog</h1>
|
||||
<p>All changes to this project will be documented in this file.</p>
|
||||
<h2 id="1109-2021-03-07">[11.0.9] - 2021-03-07</h2>
|
||||
<p>(ixwebsocket) Expose setHandshakeTimeout method</p>
|
||||
<h2 id="1108-2020-12-25">[11.0.8] - 2020-12-25</h2>
|
||||
<p>(ws) trim ws dependencies no more ixcrypto and ixcore deps</p>
|
||||
<h2 id="1107-2020-12-25">[11.0.7] - 2020-12-25</h2>
|
||||
|
@ -261,5 +261,5 @@ webSocket.send("hello world");
|
||||
|
||||
<!--
|
||||
MkDocs version : 1.1.2
|
||||
Build Date UTC : 2020-12-26 00:26:49.041091+00:00
|
||||
Build Date UTC : 2021-03-08 03:30:07.522308+00:00
|
||||
-->
|
||||
|
File diff suppressed because one or more lines are too long
16
sitemap.xml
16
sitemap.xml
@ -1,35 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2020-12-26</lastmod>
|
||||
<lastmod>2021-03-08</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url><url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2020-12-26</lastmod>
|
||||
<lastmod>2021-03-08</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url><url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2020-12-26</lastmod>
|
||||
<lastmod>2021-03-08</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url><url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2020-12-26</lastmod>
|
||||
<lastmod>2021-03-08</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url><url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2020-12-26</lastmod>
|
||||
<lastmod>2021-03-08</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url><url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2020-12-26</lastmod>
|
||||
<lastmod>2021-03-08</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url><url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2020-12-26</lastmod>
|
||||
<lastmod>2021-03-08</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url><url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2020-12-26</lastmod>
|
||||
<lastmod>2021-03-08</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
</urlset>
|
BIN
sitemap.xml.gz
BIN
sitemap.xml.gz
Binary file not shown.
@ -103,6 +103,10 @@
|
||||
<ul class="nav flex-column">
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item" data-level="2"><a href="#handshake-timeout" class="nav-link">Handshake timeout</a>
|
||||
<ul class="nav flex-column">
|
||||
</ul>
|
||||
</li>
|
||||
<li class="nav-item" data-level="2"><a href="#websocket-server-api" class="nav-link">WebSocket server API</a>
|
||||
<ul class="nav flex-column">
|
||||
</ul>
|
||||
@ -330,6 +334,11 @@ Wait time(ms): 10000
|
||||
<pre><code class="language-cpp">webSocket.setMaxWaitBetweenReconnectionRetries(5 * 1000); // 5000ms = 5s
|
||||
uint32_t m = webSocket.getMaxWaitBetweenReconnectionRetries();
|
||||
</code></pre>
|
||||
<h2 id="handshake-timeout">Handshake timeout</h2>
|
||||
<p>You can control how long to wait until timing out while waiting for the websocket handshake to be performed.</p>
|
||||
<pre><code>int handshakeTimeoutSecs = 1;
|
||||
setHandshakeTimeout(handshakeTimeoutSecs);
|
||||
</code></pre>
|
||||
<h2 id="websocket-server-api">WebSocket server API</h2>
|
||||
<h3 id="legacy-api">Legacy api</h3>
|
||||
<p>This api was actually changed to take a weak_ptr<WebSocket> as the first argument to setOnConnectionCallback ; previously it would take a shared_ptr<WebSocket> which was creating cycles and then memory leaks problems.</p>
|
||||
|
Loading…
Reference in New Issue
Block a user