Deployed 0813eb1 with MkDocs version: 1.1.2

This commit is contained in:
2021-03-16 16:56:50 +00:00
parent a65bc2ab16
commit 621994d06e
6 changed files with 24 additions and 10 deletions

View File

@ -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="#1110-2021-03-16" class="nav-link">[11.1.0] - 2021-03-16</a>
<ul class="nav flex-column">
</ul>
</li>
<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>
@ -1116,6 +1120,8 @@
<h1 id="changelog">Changelog</h1>
<p>All changes to this project will be documented in this file.</p>
<h2 id="1110-2021-03-16">[11.1.0] - 2021-03-16</h2>
<p>(ixwebsocket) Use LEAN_AND_MEAN Windows define to help with undefined link error when building a DLL. Support websocket server disablePerMessageDeflate option correctly.</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>

View File

@ -261,5 +261,5 @@ webSocket.send(&quot;hello world&quot;);
<!--
MkDocs version : 1.1.2
Build Date UTC : 2021-03-08 03:30:07.522308+00:00
Build Date UTC : 2021-03-16 16:56:50.012503+00:00
-->

File diff suppressed because one or more lines are too long

View File

@ -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>2021-03-08</lastmod>
<lastmod>2021-03-16</lastmod>
<changefreq>daily</changefreq>
</url><url>
<loc>None</loc>
<lastmod>2021-03-08</lastmod>
<lastmod>2021-03-16</lastmod>
<changefreq>daily</changefreq>
</url><url>
<loc>None</loc>
<lastmod>2021-03-08</lastmod>
<lastmod>2021-03-16</lastmod>
<changefreq>daily</changefreq>
</url><url>
<loc>None</loc>
<lastmod>2021-03-08</lastmod>
<lastmod>2021-03-16</lastmod>
<changefreq>daily</changefreq>
</url><url>
<loc>None</loc>
<lastmod>2021-03-08</lastmod>
<lastmod>2021-03-16</lastmod>
<changefreq>daily</changefreq>
</url><url>
<loc>None</loc>
<lastmod>2021-03-08</lastmod>
<lastmod>2021-03-16</lastmod>
<changefreq>daily</changefreq>
</url><url>
<loc>None</loc>
<lastmod>2021-03-08</lastmod>
<lastmod>2021-03-16</lastmod>
<changefreq>daily</changefreq>
</url><url>
<loc>None</loc>
<lastmod>2021-03-08</lastmod>
<lastmod>2021-03-16</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>

Binary file not shown.

View File

@ -406,6 +406,10 @@ if (!res.first)
return 1;
}
// Per message deflate connection is enabled by default. It can be disabled
// which might be helpful when running on low power devices such as a Rasbery Pi
server.disablePerMessageDeflate();
// Run the server in the background. Server can be stoped by calling server.stop()
server.start();
@ -468,6 +472,10 @@ if (!res.first)
return 1;
}
// Per message deflate connection is enabled by default. It can be disabled
// which might be helpful when running on low power devices such as a Rasbery Pi
server.disablePerMessageDeflate();
// Run the server in the background. Server can be stoped by calling server.stop()
server.start();