Deployed 7ae3a1d with MkDocs version: 1.3.1

This commit is contained in:
Gilles Boccon-Gibod
2022-12-18 20:55:03 -08:00
parent 3581c8d710
commit 5f0477bd28
53 changed files with 4623 additions and 561 deletions

View File

@@ -234,6 +234,34 @@
<li class="md-nav__item">
<a href="../development/contributing.html" class="md-nav__link">
Contributing
</a>
</li>
<li class="md-nav__item">
<a href="../development/code_style.html" class="md-nav__link">
Code Style
</a>
</li>
</ul>
</nav>
</li>
@@ -1222,11 +1250,11 @@
<p>The TCP Client transport uses an incoming TCP connection to a host:port address.</p>
<h2 id="moniker">Moniker<a class="headerlink" href="#moniker" title="Permanent link">&para;</a></h2>
<p>The moniker syntax for a TCP server transport is: <code>tcp-server:&lt;local-host&gt;:&lt;local-port&gt;</code>
where <code>&lt;local-host&gt;</code> may be the address of a local network interface, or <code>_</code> to accept
where <code>&lt;local-host&gt;</code> may be the address of a local network interface, or <code>_</code> to accept
connections on all local network interfaces.</p>
<div class="admonition example">
<p class="admonition-title">Example</p>
<p><code>tcp-server:_:9001</code><br />
<p><code>tcp-server:_:9001</code>
Waits for and accepts connections on port <code>9001</code></p>
</div>