Deployed 0b8b560 with MkDocs version: 1.3.1

This commit is contained in:
2022-09-08 21:58:54 +00:00
parent 1d635f37d5
commit 2b5730c815
5 changed files with 16 additions and 12 deletions

View File

@ -372,5 +372,5 @@ int main()
<!--
MkDocs version : 1.3.1
Build Date UTC : 2022-08-02 20:29:41.849928+00:00
Build Date UTC : 2022-09-08 21:58:54.213008+00:00
-->

File diff suppressed because one or more lines are too long

View File

@ -2,42 +2,42 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>None</loc>
<lastmod>2022-08-02</lastmod>
<lastmod>2022-09-08</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>None</loc>
<lastmod>2022-08-02</lastmod>
<lastmod>2022-09-08</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>None</loc>
<lastmod>2022-08-02</lastmod>
<lastmod>2022-09-08</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>None</loc>
<lastmod>2022-08-02</lastmod>
<lastmod>2022-09-08</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>None</loc>
<lastmod>2022-08-02</lastmod>
<lastmod>2022-09-08</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>None</loc>
<lastmod>2022-08-02</lastmod>
<lastmod>2022-09-08</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>None</loc>
<lastmod>2022-08-02</lastmod>
<lastmod>2022-09-08</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>None</loc>
<lastmod>2022-08-02</lastmod>
<lastmod>2022-09-08</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>

Binary file not shown.

View File

@ -360,7 +360,9 @@ setHandshakeTimeout(handshakeTimeoutSecs);
// Run a server on localhost at a given port.
// Bound host name, max connections and listen backlog can also be passed in as parameters.
ix::WebSocketServer server(port);
int port = 8008;
std::string host(&quot;127.0.0.1&quot;); // If you need this server to be accessible on a different machine, use &quot;0.0.0.0&quot;
ix::WebSocketServer server(port, host);
server.setOnConnectionCallback(
[&amp;server](std::weak_ptr&lt;WebSocket&gt; webSocket,
@ -438,7 +440,9 @@ server.wait();
// Run a server on localhost at a given port.
// Bound host name, max connections and listen backlog can also be passed in as parameters.
ix::WebSocketServer server(port);
int port = 8008;
std::string host(&quot;127.0.0.1&quot;); // If you need this server to be accessible on a different machine, use &quot;0.0.0.0&quot;
ix::WebSocketServer server(port, host);
server.setOnClientMessageCallback([](std::shared_ptr&lt;ix::ConnectionState&gt; connectionState, ix::WebSocket &amp; webSocket, const ix::WebSocketMessagePtr &amp; msg) {
// The ConnectionState object contains information about the connection,