Deployed c4e9abf with MkDocs version: 1.0.4
This commit is contained in:
parent
5350ebdcf2
commit
43d368f9a0
@ -94,6 +94,11 @@
|
||||
<div class="col-md-3"><div class="bs-sidebar hidden-print affix well" role="complementary">
|
||||
<ul class="nav bs-sidenav">
|
||||
<li class="main active"><a href="#changelog">Changelog</a></li>
|
||||
<li><a href="#782-2019-12-25">[7.8.2] - 2019-12-25</a></li>
|
||||
<li><a href="#781-2019-12-25">[7.8.1] - 2019-12-25</a></li>
|
||||
<li><a href="#780-2019-12-24">[7.8.0] - 2019-12-24</a></li>
|
||||
<li><a href="#765-2019-12-24">[7.6.5] - 2019-12-24</a></li>
|
||||
<li><a href="#764-2019-12-22">[7.6.4] - 2019-12-22</a></li>
|
||||
<li><a href="#763-2019-12-20">[7.6.3] - 2019-12-20</a></li>
|
||||
<li><a href="#762-2019-12-20">[7.6.2] - 2019-12-20</a></li>
|
||||
<li><a href="#761-2019-12-20">[7.6.1] - 2019-12-20</a></li>
|
||||
@ -168,7 +173,19 @@
|
||||
<div class="col-md-9" role="main">
|
||||
|
||||
<h1 id="changelog">Changelog</h1>
|
||||
<p>All notable changes to this project will be documented in this file.</p>
|
||||
<p>All changes to this project will be documented in this file.</p>
|
||||
<h2 id="782-2019-12-25">[7.8.2] - 2019-12-25</h2>
|
||||
<p>(ws cobra to sentry) bound the queue size used to hold up cobra messages before they are sent to sentry. Default queue size is a 100 messages. Without such limit the program runs out of memory when a subscriber receive a lot of messages that cannot make it to sentry</p>
|
||||
<h2 id="781-2019-12-25">[7.8.1] - 2019-12-25</h2>
|
||||
<p>(ws client) use correct compilation defines so that spdlog is not used as a header only library (reduce binary size and increase compilation speed)</p>
|
||||
<h2 id="780-2019-12-24">[7.8.0] - 2019-12-24</h2>
|
||||
<p>(ws client) all commands use spdlog instead of std::cerr or std::cout for logging</p>
|
||||
<h2 id="765-2019-12-24">[7.6.5] - 2019-12-24</h2>
|
||||
<p>(cobra client) send a websocket ping every 30s to keep the connection opened</p>
|
||||
<h2 id="764-2019-12-22">[7.6.4] - 2019-12-22</h2>
|
||||
<p>(client) error handling, quote url in error case when failing to parse one
|
||||
(ws) ws_cobra_publish: register callbacks before connecting
|
||||
(doc) mention mbedtls in supported ssl server backend</p>
|
||||
<h2 id="763-2019-12-20">[7.6.3] - 2019-12-20</h2>
|
||||
<p>(tls) add a simple description of the TLS configuration routine for debugging</p>
|
||||
<h2 id="762-2019-12-20">[7.6.2] - 2019-12-20</h2>
|
||||
|
@ -226,5 +226,5 @@ webSocket.send("hello world");
|
||||
|
||||
<!--
|
||||
MkDocs version : 1.0.4
|
||||
Build Date UTC : 2019-12-20 23:28:28
|
||||
Build Date UTC : 2019-12-26 06:20:36
|
||||
-->
|
||||
|
File diff suppressed because one or more lines are too long
14
sitemap.xml
14
sitemap.xml
@ -2,37 +2,37 @@
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-12-20</lastmod>
|
||||
<lastmod>2019-12-25</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-12-20</lastmod>
|
||||
<lastmod>2019-12-25</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-12-20</lastmod>
|
||||
<lastmod>2019-12-25</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-12-20</lastmod>
|
||||
<lastmod>2019-12-25</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-12-20</lastmod>
|
||||
<lastmod>2019-12-25</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-12-20</lastmod>
|
||||
<lastmod>2019-12-25</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-12-20</lastmod>
|
||||
<lastmod>2019-12-25</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
</urlset>
|
BIN
sitemap.xml.gz
BIN
sitemap.xml.gz
Binary file not shown.
@ -329,7 +329,7 @@ Options:
|
||||
|
||||
<h2 id="cobra-client-and-server">Cobra client and server</h2>
|
||||
<p><a href="https://github.com/machinezone/cobra">cobra</a> is a real time messenging server. ws has several sub-command to interact with cobra. There is also a minimal cobra compatible server named snake available.</p>
|
||||
<p>Below are examples on running a snake server and clients with TLS enabled (the server only works with the OpenSSL backend for now).</p>
|
||||
<p>Below are examples on running a snake server and clients with TLS enabled (the server only works with the OpenSSL and the Mbed TLS backend for now).</p>
|
||||
<p>First, generate certificates.</p>
|
||||
<pre><code>$ cd /path/to/IXWebSocket
|
||||
$ cd ixsnake/ixsnake
|
||||
@ -439,7 +439,7 @@ $ ws cobra_publish --endpoint wss://127.0.0.1:8765 --appkey FC2F10139A2BAc53BB72
|
||||
[2019-12-19 20:46:42.659] [info] Published message id 3 acked
|
||||
</code></pre>
|
||||
|
||||
<p>To use OpenSSL on macOS, compile with <code>make ws_openssl</code>. First you will have to install OpenSSL libraries, which can be done with Homebrew.</p></div>
|
||||
<p>To use OpenSSL on macOS, compile with <code>make ws_openssl</code>. First you will have to install OpenSSL libraries, which can be done with Homebrew. Use <code>make ws_mbedtls</code> accordingly to use MbedTLS.</p></div>
|
||||
</div>
|
||||
|
||||
<footer class="col-md-12">
|
||||
|
Loading…
x
Reference in New Issue
Block a user