update docs for revert-autorelay-sleep
This commit is contained in:
parent
51573f55ea
commit
4bbc45f796
|
@ -260,7 +260,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:18 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -227,13 +227,12 @@ window.addEventListener("DOMContentLoaded", main2);
|
|||
muxed: Table[PeerId, seq[Muxer]]
|
||||
connEvents: array[ConnEventKind, OrderedSet[ConnEventHandler]]
|
||||
peerEvents: array[PeerEventKind, OrderedSet[PeerEventHandler]]
|
||||
peerIdentifiedEvents: OrderedSet[PeerIdentifiedEventHandler]
|
||||
expectedConnectionsOverLimit*: Table[Future[Muxer]]
|
||||
peerStore*: PeerStore">ConnManager</a></li>
|
||||
<li><a class="reference" href="#PeerEvent"
|
||||
title="PeerEvent = object
|
||||
case kind*: PeerEventKind
|
||||
of PeerEventKind.Joined:
|
||||
of PeerEventKind.Joined, PeerEventKind.Identified:
|
||||
initiator*: bool
|
||||
|
||||
else:
|
||||
|
@ -243,10 +242,7 @@ window.addEventListener("DOMContentLoaded", main2);
|
|||
gcsafe, raises: [].}">PeerEventHandler</a></li>
|
||||
<li><a class="reference" href="#PeerEventKind"
|
||||
title="PeerEventKind {.pure.} = enum
|
||||
Left, Joined">PeerEventKind</a></li>
|
||||
<li><a class="reference" href="#PeerIdentifiedEventHandler"
|
||||
title="PeerIdentifiedEventHandler = proc (peerId: PeerId): Future[void] {.gcsafe,
|
||||
raises: [].}">PeerIdentifiedEventHandler</a></li>
|
||||
Left, Joined, Identified">PeerEventKind</a></li>
|
||||
<li><a class="reference" href="#TooManyConnectionsError"
|
||||
title="TooManyConnectionsError = object of LPError">TooManyConnectionsError</a></li>
|
||||
|
||||
|
@ -278,13 +274,6 @@ window.addEventListener("DOMContentLoaded", main2);
|
|||
kind: PeerEventKind)">addPeerEventHandler(c: ConnManager; handler: PeerEventHandler;
|
||||
kind: PeerEventKind)</a></li>
|
||||
|
||||
</ul>
|
||||
<ul class="simple nested-toc-section">addPeerIdentifiedEventHandler
|
||||
<li><a class="reference" href="#addPeerIdentifiedEventHandler%2CConnManager%2CPeerIdentifiedEventHandler"
|
||||
title="addPeerIdentifiedEventHandler(c: ConnManager;
|
||||
handler: PeerIdentifiedEventHandler)">addPeerIdentifiedEventHandler(c: ConnManager;
|
||||
handler: PeerIdentifiedEventHandler)</a></li>
|
||||
|
||||
</ul>
|
||||
<ul class="simple nested-toc-section">close
|
||||
<li><a class="reference" href="#close%2CConnManager"
|
||||
|
@ -362,13 +351,6 @@ window.addEventListener("DOMContentLoaded", main2);
|
|||
kind: PeerEventKind)">removePeerEventHandler(c: ConnManager; handler: PeerEventHandler;
|
||||
kind: PeerEventKind)</a></li>
|
||||
|
||||
</ul>
|
||||
<ul class="simple nested-toc-section">removePeerIdentifiedEventHandler
|
||||
<li><a class="reference" href="#removePeerIdentifiedEventHandler%2CConnManager%2CPeerIdentifiedEventHandler"
|
||||
title="removePeerIdentifiedEventHandler(c: ConnManager;
|
||||
handler: PeerIdentifiedEventHandler)">removePeerIdentifiedEventHandler(c: ConnManager;
|
||||
handler: PeerIdentifiedEventHandler)</a></li>
|
||||
|
||||
</ul>
|
||||
<ul class="simple nested-toc-section">selectMuxer
|
||||
<li><a class="reference" href="#selectMuxer%2CConnManager%2CPeerId"
|
||||
|
@ -389,11 +371,6 @@ window.addEventListener("DOMContentLoaded", main2);
|
|||
<li><a class="reference" href="#triggerPeerEvents%2CConnManager%2CPeerId%2CPeerEvent"
|
||||
title="triggerPeerEvents(c: ConnManager; peerId: PeerId; event: PeerEvent): Future[void]">triggerPeerEvents(c: ConnManager; peerId: PeerId; event: PeerEvent): Future[void]</a></li>
|
||||
|
||||
</ul>
|
||||
<ul class="simple nested-toc-section">triggerPeerIdentifiedEvents
|
||||
<li><a class="reference" href="#triggerPeerIdentifiedEvents%2CConnManager%2CPeerId"
|
||||
title="triggerPeerIdentifiedEvents(c: ConnManager; peerId: PeerId): Future[void]">triggerPeerIdentifiedEvents(c: ConnManager; peerId: PeerId): Future[void]</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
</ul>
|
||||
|
@ -435,9 +412,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L76"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L73"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L76" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L73" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -495,7 +472,6 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<span class="Identifier">muxed</span><span class="Other">:</span> <span class="Identifier">Table</span><span class="Other">[</span><a href="peerid.html#PeerId"><span class="Identifier">PeerId</span></a><span class="Other">,</span> <span class="Identifier">seq</span><span class="Other">[</span><span class="Identifier">Muxer</span><span class="Other">]</span><span class="Other">]</span>
|
||||
<span class="Identifier">connEvents</span><span class="Other">:</span> <span class="Identifier">array</span><span class="Other">[</span><span class="Identifier">ConnEventKind</span><span class="Other">,</span> <span class="Identifier">OrderedSet</span><span class="Other">[</span><a href="peerstore.html#ConnEventHandler"><span class="Identifier">ConnEventHandler</span></a><span class="Other">]</span><span class="Other">]</span>
|
||||
<span class="Identifier">peerEvents</span><span class="Other">:</span> <span class="Identifier">array</span><span class="Other">[</span><span class="Identifier">PeerEventKind</span><span class="Other">,</span> <span class="Identifier">OrderedSet</span><span class="Other">[</span><a href="peerstore.html#PeerEventHandler"><span class="Identifier">PeerEventHandler</span></a><span class="Other">]</span><span class="Other">]</span>
|
||||
<span class="Identifier">peerIdentifiedEvents</span><span class="Other">:</span> <span class="Identifier">OrderedSet</span><span class="Other">[</span><a href="peerstore.html#PeerIdentifiedEventHandler"><span class="Identifier">PeerIdentifiedEventHandler</span></a><span class="Other">]</span>
|
||||
<span class="Identifier">expectedConnectionsOverLimit</span><span class="Operator">*</span><span class="Other">:</span> <span class="Identifier">Table</span><span class="Other">[</span><span class="Identifier">Future</span><span class="Other">[</span><span class="Identifier">Muxer</span><span class="Other">]</span><span class="Other">]</span>
|
||||
<span class="Identifier">peerStore</span><span class="Operator">*</span><span class="Other">:</span> <span class="Identifier">PeerStore</span>
|
||||
</pre></dt>
|
||||
|
@ -503,16 +479,16 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L65"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L63"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L65" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L63" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
<div id="PeerEvent" class="tohide">
|
||||
<dt><pre><a href="peerstore.html#PeerEvent"><span class="Identifier">PeerEvent</span></a> <span class="Other">=</span> <span class="Keyword">object</span>
|
||||
<span class="Keyword">case</span> <span class="Identifier">kind</span><span class="Operator">*</span><span class="Other">:</span> <a href="peerstore.html#PeerEventKind"><span class="Identifier">PeerEventKind</span></a>
|
||||
<span class="Keyword">of</span> <span class="Identifier">PeerEventKind</span><span class="Other">.</span><span class="Identifier">Joined</span><span class="Other">:</span>
|
||||
<span class="Keyword">of</span> <span class="Identifier">PeerEventKind</span><span class="Other">.</span><span class="Identifier">Joined</span><span class="Other">,</span> <span class="Identifier">PeerEventKind</span><span class="Other">.</span><span class="Identifier">Identified</span><span class="Other">:</span>
|
||||
<span class="Identifier">initiator</span><span class="Operator">*</span><span class="Other">:</span> <span class="Identifier">bool</span>
|
||||
|
||||
<span class="Keyword">else</span><span class="Other">:</span>
|
||||
|
@ -523,9 +499,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L52"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L53"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L52" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L53" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -536,15 +512,15 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L59"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L60"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L59" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L60" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
<div id="PeerEventKind" class="tohide">
|
||||
<dt><pre><a href="peerstore.html#PeerEventKind"><span class="Identifier">PeerEventKind</span></a> {.<span class="Identifier">pure</span>.} <span class="Other">=</span> <span class="Keyword">enum</span>
|
||||
<span class="Identifier">Left</span><span class="Other">,</span> <span class="Identifier">Joined</span></pre></dt>
|
||||
<span class="Identifier">Left</span><span class="Other">,</span> <span class="Identifier">Joined</span><span class="Other">,</span> <span class="Identifier">Identified</span></pre></dt>
|
||||
<dd>
|
||||
|
||||
|
||||
|
@ -553,19 +529,6 @@ href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p
|
|||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L48" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
<div id="PeerIdentifiedEventHandler" class="tohide">
|
||||
<dt><pre><a href="peerstore.html#PeerIdentifiedEventHandler"><span class="Identifier">PeerIdentifiedEventHandler</span></a> <span class="Other">=</span> <span class="Keyword">proc</span> <span class="Other">(</span><span class="Identifier">peerId</span><span class="Other">:</span> <a href="peerid.html#PeerId"><span class="Identifier">PeerId</span></a><span class="Other">)</span><span class="Other">:</span> <span class="Identifier">Future</span><span class="Other">[</span><span class="Identifier">void</span><span class="Other">]</span> {.<span><span class="Other pragmadots">...</span></span><span class="pragmawrap"><span class="Identifier">gcsafe</span><span class="Other">,</span>
|
||||
<span class="Identifier">raises</span><span class="Other">:</span> <span class="Other">[</span><span class="Other">]</span></span>.}</pre></dt>
|
||||
<dd>
|
||||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L62"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L62" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
<div id="TooManyConnectionsError" class="tohide">
|
||||
|
@ -621,9 +584,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
Add peer event handler - handlers must not raise exceptions!
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L115"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L112"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L115" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L112" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -634,25 +597,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
Add peer event handler - handlers must not raise exceptions!
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L144"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L141"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L144" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
<div id="addPeerIdentifiedEventHandler,ConnManager,PeerIdentifiedEventHandler" class="tohide">
|
||||
<dt><pre><span class="Keyword">proc</span> <a href="#addPeerIdentifiedEventHandler%2CConnManager%2CPeerIdentifiedEventHandler"><span class="Identifier">addPeerIdentifiedEventHandler</span></a><span class="Other">(</span><span class="Identifier">c</span><span class="Other">:</span> <a href="peerstore.html#ConnManager"><span class="Identifier">ConnManager</span></a><span class="Other">;</span>
|
||||
<span class="Identifier">handler</span><span class="Other">:</span> <a href="peerstore.html#PeerIdentifiedEventHandler"><span class="Identifier">PeerIdentifiedEventHandler</span></a><span class="Other">)</span> {.
|
||||
<span class="Identifier">public</span><span class="Other">,</span> <span><span class="Other pragmadots">...</span></span><span class="pragmawrap"><span class="Identifier">raises</span><span class="Other">:</span> <span class="Other">[</span><span class="Other">]</span><span class="Other">,</span> <span class="Identifier">tags</span><span class="Other">:</span> <span class="Other">[</span><span class="Other">]</span></span>.}</pre></dt>
|
||||
<dd>
|
||||
|
||||
<p>Adds a PeerIdentifiedEventHandler, which will be triggered when a peer is identified.</p>
|
||||
<p>The handler should not raise.</p>
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L177"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L177" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L141" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -663,9 +610,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
cleanup resources for the connection manager
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L442"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L405"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L442" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L405" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -675,9 +622,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L102"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L99"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L102" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L99" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -687,9 +634,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
checks if a muxer is being tracked by the connection manager
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L233"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L196"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L233" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L196" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -699,9 +646,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L230"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L193"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L230" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L193" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -712,9 +659,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
drop connections and cleanup resources for peer
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L431"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L394"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L431" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L394" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -726,9 +673,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
Wait for a peer to connect to us. This will bypass the <tt class="docutils literal"><span class="pre"><span class="Identifier">MaxConnectionsPerPeer</span></span></tt>
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L213"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L176"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L213" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L176" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -739,9 +686,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L112"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L109"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L112" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L109" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -753,9 +700,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L361"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L324"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L361" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L324" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -766,9 +713,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L365"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L328"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L365" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L328" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -780,9 +727,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
get a muxed stream for the passed muxer
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L410"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L373"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L410" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L373" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -794,9 +741,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
get a muxed stream for the passed peer from any connection
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L417"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L380"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L417" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L380" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -808,9 +755,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
get a muxed stream for the passed peer from a connection with <tt class="docutils literal"><span class="pre"><span class="Identifier">dir</span></span></tt>
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L425"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L388"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L425" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L388" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -822,9 +769,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L83"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L80"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L83" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L80" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -834,9 +781,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L383"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L346"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L383" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L346" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -847,9 +794,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L124"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L121"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L124" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L121" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -860,23 +807,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L154"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L151"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L154" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
<div id="removePeerIdentifiedEventHandler,ConnManager,PeerIdentifiedEventHandler" class="tohide">
|
||||
<dt><pre><span class="Keyword">proc</span> <a href="#removePeerIdentifiedEventHandler%2CConnManager%2CPeerIdentifiedEventHandler"><span class="Identifier">removePeerIdentifiedEventHandler</span></a><span class="Other">(</span><span class="Identifier">c</span><span class="Other">:</span> <a href="peerstore.html#ConnManager"><span class="Identifier">ConnManager</span></a><span class="Other">;</span>
|
||||
<span class="Identifier">handler</span><span class="Other">:</span> <a href="peerstore.html#PeerIdentifiedEventHandler"><span class="Identifier">PeerIdentifiedEventHandler</span></a><span class="Other">)</span> {.
|
||||
<span class="Identifier">public</span><span class="Other">,</span> <span><span class="Other pragmadots">...</span></span><span class="pragmawrap"><span class="Identifier">raises</span><span class="Other">:</span> <span class="Other">[</span><span class="Other">]</span><span class="Other">,</span> <span class="Identifier">tags</span><span class="Other">:</span> <span class="Other">[</span><span class="Other">]</span></span>.}</pre></dt>
|
||||
<dd>
|
||||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L188"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L188" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L151" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -886,9 +819,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
Select a connection for the provided giving priority to outgoing connections
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L298"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L261"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L298" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L261" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -899,9 +832,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L389"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L352"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L389" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L352" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -911,9 +844,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L404"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L367"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L404" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L367" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -925,23 +858,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L159"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L156"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L159" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
<div id="triggerPeerIdentifiedEvents,ConnManager,PeerId" class="tohide">
|
||||
<dt><pre><span class="Keyword">proc</span> <a href="#triggerPeerIdentifiedEvents%2CConnManager%2CPeerId"><span class="Identifier">triggerPeerIdentifiedEvents</span></a><span class="Other">(</span><span class="Identifier">c</span><span class="Other">:</span> <a href="peerstore.html#ConnManager"><span class="Identifier">ConnManager</span></a><span class="Other">;</span> <span class="Identifier">peerId</span><span class="Other">:</span> <a href="peerid.html#PeerId"><span class="Identifier">PeerId</span></a><span class="Other">)</span><span class="Other">:</span> <span class="Identifier">Future</span><span class="Other">[</span><span class="Identifier">void</span><span class="Other">]</span> {.
|
||||
<span class="Identifier">stackTrace</span><span class="Other">:</span> <span class="DecNumber">false</span><span class="Other">,</span> <span><span class="Other pragmadots">...</span></span><span class="pragmawrap"><span class="Identifier">raises</span><span class="Other">:</span> <span class="Other">[</span><span class="Other">]</span><span class="Other">,</span> <span class="Identifier">gcsafe</span><span class="Other">,</span> <span class="Identifier">raises</span><span class="Other">:</span> <span class="Other">[</span><span class="Other">]</span><span class="Other">,</span> <span class="Identifier">raises</span><span class="Other">:</span> <span class="Other">[</span><span class="Other">]</span><span class="Other">,</span>
|
||||
<span class="Identifier">tags</span><span class="Other">:</span> <span class="Other">[</span><span class="Identifier">RootEffect</span><span class="Other">]</span></span>.}</pre></dt>
|
||||
<dd>
|
||||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/connmanager.nim#L193"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L193" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/connmanager.nim#L156" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -955,7 +874,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:15 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -391,7 +391,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1621,7 +1621,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:18 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:14 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -398,7 +398,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1450,7 +1450,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:17 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:13 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -3040,7 +3040,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:16 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:12 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -940,7 +940,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:17 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:12 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -275,7 +275,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1195,7 +1195,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:16 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:12 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1029,7 +1029,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:16 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:12 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -908,7 +908,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:17 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:13 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -381,7 +381,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:15 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -344,9 +344,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/dialer.nim#L334"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/dialer.nim#L337"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/dialer.nim#L334" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/dialer.nim#L337" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -361,9 +361,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/dialer.nim#L331"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/dialer.nim#L334"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/dialer.nim#L331" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/dialer.nim#L334" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -374,9 +374,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
Connects to a peer and retrieve its PeerId
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/dialer.nim#L229"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/dialer.nim#L232"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/dialer.nim#L229" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/dialer.nim#L232" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -388,9 +388,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
connect remote peer without negotiating a protocol
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/dialer.nim#L216"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/dialer.nim#L219"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/dialer.nim#L216" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/dialer.nim#L219" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -402,9 +402,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
create a protocol stream and establish a connection if one doesn't exist already
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/dialer.nim#L296"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/dialer.nim#L299"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/dialer.nim#L296" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/dialer.nim#L299" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -415,9 +415,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
create a protocol stream over an existing connection
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/dialer.nim#L278"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/dialer.nim#L281"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/dialer.nim#L278" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/dialer.nim#L281" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -429,9 +429,9 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
|
||||
Create a protocol stream in order to check if a connection is possible. Doesn't use the Connection Manager to save it.
|
||||
<a
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/dialer.nim#L258"
|
||||
href="https://github.com/status-im/nim-libp2p/tree/revert-autorelay-sleep/libp2p/dialer.nim#L261"
|
||||
class="link-seesrc" target="_blank">Source</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/dialer.nim#L258" class="link-seesrc" target="_blank" >Edit</a>
|
||||
<a href="https://github.com/status-im/nim-libp2p/edit/devel/libp2p/dialer.nim#L261" class="link-seesrc" target="_blank" >Edit</a>
|
||||
|
||||
</dd>
|
||||
</div>
|
||||
|
@ -450,7 +450,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:15 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -312,7 +312,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:18 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:14 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -2551,7 +2551,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:18 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:14 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -396,7 +396,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:17 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:13 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -464,7 +464,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:17 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:13 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -689,7 +689,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:18 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:14 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -559,7 +559,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:15 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -399,7 +399,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:15 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -455,7 +455,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -535,7 +535,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:14 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -604,7 +604,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -375,7 +375,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:15 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -360,7 +360,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:15 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -806,7 +806,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:18 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:14 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -484,7 +484,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:14 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -931,7 +931,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:15 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:11 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -508,7 +508,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:15 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -302,7 +302,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -468,7 +468,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -722,7 +722,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -383,7 +383,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -568,7 +568,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -414,7 +414,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:21 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -376,7 +376,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -636,7 +636,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:15 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -414,7 +414,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:21 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:17 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -563,7 +563,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:14 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -239,7 +239,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:18 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -255,7 +255,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:17 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -466,7 +466,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:18 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -605,7 +605,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:18 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -494,7 +494,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:18 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -448,7 +448,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:18 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -792,7 +792,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:18 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -405,7 +405,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:18 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -370,7 +370,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:18 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1179,7 +1179,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:18 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -820,7 +820,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:18 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -342,7 +342,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:17 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -662,7 +662,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:17 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -596,7 +596,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:17 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -456,7 +456,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:18 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -532,7 +532,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -570,7 +570,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -558,7 +558,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:15 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -422,7 +422,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:14 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -426,7 +426,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:21 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -503,7 +503,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:14 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -524,7 +524,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:15 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -504,7 +504,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:15 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -502,7 +502,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:14 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1009,7 +1009,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:14 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -442,7 +442,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:14 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -266,7 +266,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:18 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:14 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -491,7 +491,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:15 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -583,7 +583,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:21 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:17 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -334,7 +334,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:21 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -475,7 +475,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:15 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:11 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -271,7 +271,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -245,7 +245,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -512,7 +512,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:20 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:16 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -362,7 +362,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:15 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -723,7 +723,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:15 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:11 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -636,7 +636,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:17 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:13 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -615,7 +615,7 @@ class="link-seesrc" target="_blank">Source</a>
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:19 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:15 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -285,14 +285,6 @@ window.addEventListener('DOMContentLoaded', main);
|
|||
<li><a class="reference external"
|
||||
data-doc-search-tag="switch: addPeerEventHandler(s: Switch; handler: PeerEventHandler; kind: PeerEventKind)" href="libp2p/switch.html#addPeerEventHandler%2CSwitch%2CPeerEventHandler%2CPeerEventKind">switch: addPeerEventHandler(s: Switch; handler: PeerEventHandler; kind: PeerEventKind)</a></li>
|
||||
</ul></dd>
|
||||
<dt><a name="addPeerIdentifiedEventHandler" href="#addPeerIdentifiedEventHandler"><span>addPeerIdentifiedEventHandler:</span></a></dt><dd><ul class="simple">
|
||||
<li><a class="reference external"
|
||||
data-doc-search-tag="connmanager: addPeerIdentifiedEventHandler(c: ConnManager;
|
||||
handler: PeerIdentifiedEventHandler)" href="libp2p/connmanager.html#addPeerIdentifiedEventHandler%2CConnManager%2CPeerIdentifiedEventHandler">connmanager: addPeerIdentifiedEventHandler(c: ConnManager;
|
||||
handler: PeerIdentifiedEventHandler)</a></li>
|
||||
<li><a class="reference external"
|
||||
data-doc-search-tag="switch: addPeerIdentifiedEventHandler(s: Switch; handler: PeerIdentifiedEventHandler)" href="libp2p/switch.html#addPeerIdentifiedEventHandler%2CSwitch%2CPeerIdentifiedEventHandler">switch: addPeerIdentifiedEventHandler(s: Switch; handler: PeerIdentifiedEventHandler)</a></li>
|
||||
</ul></dd>
|
||||
<dt><a name="AddressInfo" href="#AddressInfo"><span>AddressInfo:</span></a></dt><dd><ul class="simple">
|
||||
<li><a class="reference external"
|
||||
data-doc-search-tag="routing_record: AddressInfo" href="libp2p/routing_record.html#AddressInfo">routing_record: AddressInfo</a></li>
|
||||
|
@ -3555,10 +3547,6 @@ window.addEventListener('DOMContentLoaded', main);
|
|||
<li><a class="reference external"
|
||||
data-doc-search-tag="peerid: PeerId" href="libp2p/peerid.html#PeerId">peerid: PeerId</a></li>
|
||||
</ul></dd>
|
||||
<dt><a name="PeerIdentifiedEventHandler" href="#PeerIdentifiedEventHandler"><span>PeerIdentifiedEventHandler:</span></a></dt><dd><ul class="simple">
|
||||
<li><a class="reference external"
|
||||
data-doc-search-tag="connmanager: PeerIdentifiedEventHandler" href="libp2p/connmanager.html#PeerIdentifiedEventHandler">connmanager: PeerIdentifiedEventHandler</a></li>
|
||||
</ul></dd>
|
||||
<dt><a name="PeerInfo" href="#PeerInfo"><span>PeerInfo:</span></a></dt><dd><ul class="simple">
|
||||
<li><a class="reference external"
|
||||
data-doc-search-tag="peerinfo: PeerInfo" href="libp2p/peerinfo.html#PeerInfo">peerinfo: PeerInfo</a></li>
|
||||
|
@ -4039,14 +4027,6 @@ window.addEventListener('DOMContentLoaded', main);
|
|||
<li><a class="reference external"
|
||||
data-doc-search-tag="switch: removePeerEventHandler(s: Switch; handler: PeerEventHandler; kind: PeerEventKind)" href="libp2p/switch.html#removePeerEventHandler%2CSwitch%2CPeerEventHandler%2CPeerEventKind">switch: removePeerEventHandler(s: Switch; handler: PeerEventHandler; kind: PeerEventKind)</a></li>
|
||||
</ul></dd>
|
||||
<dt><a name="removePeerIdentifiedEventHandler" href="#removePeerIdentifiedEventHandler"><span>removePeerIdentifiedEventHandler:</span></a></dt><dd><ul class="simple">
|
||||
<li><a class="reference external"
|
||||
data-doc-search-tag="connmanager: removePeerIdentifiedEventHandler(c: ConnManager;
|
||||
handler: PeerIdentifiedEventHandler)" href="libp2p/connmanager.html#removePeerIdentifiedEventHandler%2CConnManager%2CPeerIdentifiedEventHandler">connmanager: removePeerIdentifiedEventHandler(c: ConnManager;
|
||||
handler: PeerIdentifiedEventHandler)</a></li>
|
||||
<li><a class="reference external"
|
||||
data-doc-search-tag="switch: removePeerIdentifiedEventHandler(s: Switch; handler: PeerIdentifiedEventHandler)" href="libp2p/switch.html#removePeerIdentifiedEventHandler%2CSwitch%2CPeerIdentifiedEventHandler">switch: removePeerIdentifiedEventHandler(s: Switch; handler: PeerIdentifiedEventHandler)</a></li>
|
||||
</ul></dd>
|
||||
<dt><a name="removeValidator" href="#removeValidator"><span>removeValidator:</span></a></dt><dd><ul class="simple">
|
||||
<li><a class="reference external"
|
||||
data-doc-search-tag="pubsub: removeValidator(p: PubSub; topic: varargs[string]; hook: ValidatorHandler)" href="libp2p/protocols/pubsub/pubsub.html#removeValidator.e%2CPubSub%2Cvarargs%5Bstring%5D%2CValidatorHandler">pubsub: removeValidator(p: PubSub; topic: varargs[string]; hook: ValidatorHandler)</a></li>
|
||||
|
@ -4935,10 +4915,6 @@ window.addEventListener('DOMContentLoaded', main);
|
|||
<li><a class="reference external"
|
||||
data-doc-search-tag="connmanager: triggerPeerEvents(c: ConnManager; peerId: PeerId; event: PeerEvent): Future[void]" href="libp2p/connmanager.html#triggerPeerEvents%2CConnManager%2CPeerId%2CPeerEvent">connmanager: triggerPeerEvents(c: ConnManager; peerId: PeerId; event: PeerEvent): Future[void]</a></li>
|
||||
</ul></dd>
|
||||
<dt><a name="triggerPeerIdentifiedEvents" href="#triggerPeerIdentifiedEvents"><span>triggerPeerIdentifiedEvents:</span></a></dt><dd><ul class="simple">
|
||||
<li><a class="reference external"
|
||||
data-doc-search-tag="connmanager: triggerPeerIdentifiedEvents(c: ConnManager; peerId: PeerId): Future[void]" href="libp2p/connmanager.html#triggerPeerIdentifiedEvents%2CConnManager%2CPeerId">connmanager: triggerPeerIdentifiedEvents(c: ConnManager; peerId: PeerId): Future[void]</a></li>
|
||||
</ul></dd>
|
||||
<dt><a name="tryAcquire" href="#tryAcquire"><span>tryAcquire:</span></a></dt><dd><ul class="simple">
|
||||
<li><a class="reference external"
|
||||
data-doc-search-tag="semaphore: tryAcquire(s: AsyncSemaphore): bool" href="libp2p/utils/semaphore.html#tryAcquire%2CAsyncSemaphore">semaphore: tryAcquire(s: AsyncSemaphore): bool</a></li>
|
||||
|
@ -5472,7 +5448,7 @@ window.addEventListener('DOMContentLoaded', main);
|
|||
<div class="twelve-columns footer">
|
||||
<span class="nim-sprite"></span>
|
||||
<br/>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-13 14:56:22 UTC</small>
|
||||
<small style="color: var(--hint);">Made with Nim. Generated: 2024-06-14 11:07:18 UTC</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue