mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-28 15:05:53 +00:00
deploy: 9d89d4c188
This commit is contained in:
@@ -906,7 +906,7 @@ $(function() {
|
||||
<div class="line"><a name="l00852"></a><span class="lineno"> 852</span>  <a class="code" href="classripple_1_1PeerFinder_1_1Logic.html#a952b77af54a34b53aed9b4432205b760">slots_</a>.<a class="codeRef" href="http://en.cppreference.com/w/cpp/container/map/erase.html">erase</a>(iter);</div>
|
||||
<div class="line"><a name="l00853"></a><span class="lineno"> 853</span>  }</div>
|
||||
<div class="line"><a name="l00854"></a><span class="lineno"> 854</span>  <span class="comment">// Remove the key if present</span></div>
|
||||
<div class="line"><a name="l00855"></a><span class="lineno"> 855</span>  <span class="keywordflow">if</span> (slot->public_key() != boost::none)</div>
|
||||
<div class="line"><a name="l00855"></a><span class="lineno"> 855</span>  <span class="keywordflow">if</span> (slot->public_key() != std::nullopt)</div>
|
||||
<div class="line"><a name="l00856"></a><span class="lineno"> 856</span>  {</div>
|
||||
<div class="line"><a name="l00857"></a><span class="lineno"> 857</span>  <span class="keyword">auto</span> <span class="keyword">const</span> iter = <a class="code" href="classripple_1_1PeerFinder_1_1Logic.html#a4c83eb9bb7e4eb07064a092bbb1f3018">keys_</a>.find(*slot->public_key());</div>
|
||||
<div class="line"><a name="l00858"></a><span class="lineno"> 858</span>  <span class="comment">// Key must exist</span></div>
|
||||
@@ -1162,9 +1162,9 @@ $(function() {
|
||||
<div class="line"><a name="l01109"></a><span class="lineno"> 1109</span>  {</div>
|
||||
<div class="line"><a name="l01110"></a><span class="lineno"> 1110</span>  <a class="code" href="classbeast_1_1PropertyStream_1_1Map.html">beast::PropertyStream::Map</a> item(<a class="code" href="namespaceripple.html#a53f80df10254751781250aa20704e98f">set</a>);</div>
|
||||
<div class="line"><a name="l01111"></a><span class="lineno"> 1111</span>  <a class="code" href="classripple_1_1PeerFinder_1_1SlotImp.html">SlotImp</a> <span class="keyword">const</span>& slot(*entry.second);</div>
|
||||
<div class="line"><a name="l01112"></a><span class="lineno"> 1112</span>  <span class="keywordflow">if</span> (slot.<a class="code" href="classripple_1_1PeerFinder_1_1SlotImp.html#a5a9f54ba86fb0f3cd1e1d1854405e603">local_endpoint</a>() != boost::none)</div>
|
||||
<div class="line"><a name="l01113"></a><span class="lineno"> 1113</span>  item[<span class="stringliteral">"local_address"</span>] = <a class="code" href="namespaceripple.html#a96888695e8d79474e080c334f149e30a">to_string</a>(*slot.<a class="code" href="classripple_1_1PeerFinder_1_1SlotImp.html#a5a9f54ba86fb0f3cd1e1d1854405e603">local_endpoint</a>());</div>
|
||||
<div class="line"><a name="l01114"></a><span class="lineno"> 1114</span>  item[<span class="stringliteral">"remote_address"</span>] = <a class="code" href="namespaceripple.html#a96888695e8d79474e080c334f149e30a">to_string</a>(slot.<a class="code" href="classripple_1_1PeerFinder_1_1SlotImp.html#aebec488e6aea6197e4f813914710cafa">remote_endpoint</a>());</div>
|
||||
<div class="line"><a name="l01112"></a><span class="lineno"> 1112</span>  <span class="keywordflow">if</span> (slot.<a class="code" href="classripple_1_1PeerFinder_1_1SlotImp.html#a0e8b6415b2e19e337568e29e02bba1cc">local_endpoint</a>() != std::nullopt)</div>
|
||||
<div class="line"><a name="l01113"></a><span class="lineno"> 1113</span>  item[<span class="stringliteral">"local_address"</span>] = <a class="code" href="namespaceripple.html#af9776f187d3686a7fba4c2d2fbeebdf4">to_string</a>(*slot.<a class="code" href="classripple_1_1PeerFinder_1_1SlotImp.html#a0e8b6415b2e19e337568e29e02bba1cc">local_endpoint</a>());</div>
|
||||
<div class="line"><a name="l01114"></a><span class="lineno"> 1114</span>  item[<span class="stringliteral">"remote_address"</span>] = <a class="code" href="namespaceripple.html#af9776f187d3686a7fba4c2d2fbeebdf4">to_string</a>(slot.<a class="code" href="classripple_1_1PeerFinder_1_1SlotImp.html#aebec488e6aea6197e4f813914710cafa">remote_endpoint</a>());</div>
|
||||
<div class="line"><a name="l01115"></a><span class="lineno"> 1115</span>  <span class="keywordflow">if</span> (slot.<a class="code" href="classripple_1_1PeerFinder_1_1SlotImp.html#a6598320a548e70247020e689a40ce1a3">inbound</a>())</div>
|
||||
<div class="line"><a name="l01116"></a><span class="lineno"> 1116</span>  item[<span class="stringliteral">"inbound"</span>] = <span class="stringliteral">"yes"</span>;</div>
|
||||
<div class="line"><a name="l01117"></a><span class="lineno"> 1117</span>  <span class="keywordflow">if</span> (slot.<a class="code" href="classripple_1_1PeerFinder_1_1SlotImp.html#a3f6927b6e3dca316762263d2331af7d1">fixed</a>())</div>
|
||||
@@ -1311,7 +1311,7 @@ $(function() {
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Bootcache_html_a9a3401c79a6cedc41f2c1b5fea7682c5"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Bootcache.html#a9a3401c79a6cedc41f2c1b5fea7682c5">ripple::PeerFinder::Bootcache::on_failure</a></div><div class="ttdeci">void on_failure(beast::IP::Endpoint const &endpoint)</div><div class="ttdoc">Called when an outbound connection attempt fails to handshake.</div><div class="ttdef"><b>Definition:</b> <a href="Bootcache_8cpp_source.html#l00173">Bootcache.cpp:173</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1SlotImp_html_ae14c209c0228c21fe2ed80d1fdf1750c"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1SlotImp.html#ae14c209c0228c21fe2ed80d1fdf1750c">ripple::PeerFinder::SlotImp::checked</a></div><div class="ttdeci">bool checked</div><div class="ttdef"><b>Definition:</b> <a href="SlotImp_8h_source.html#l00195">SlotImp.h:195</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Logic_html_af1d63c6f7a842ca58f87b0bd21611114"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Logic.html#af1d63c6f7a842ca58f87b0bd21611114">ripple::PeerFinder::Logic::fixed_</a></div><div class="ttdeci">std::map< beast::IP::Endpoint, Fixed > fixed_</div><div class="ttdef"><b>Definition:</b> <a href="peerfinder_2impl_2Logic_8h_source.html#l00083">peerfinder/impl/Logic.h:83</a></div></div>
|
||||
<div class="ttc" id="aclassbeast_1_1IP_1_1Endpoint_html_a63fa66c4eb0d68359a0ff642891493c5"><div class="ttname"><a href="classbeast_1_1IP_1_1Endpoint.html#a63fa66c4eb0d68359a0ff642891493c5">beast::IP::Endpoint::address</a></div><div class="ttdeci">Address const & address() const</div><div class="ttdoc">Returns the address portion of this endpoint.</div><div class="ttdef"><b>Definition:</b> <a href="IPEndpoint_8h_source.html#l00077">IPEndpoint.h:77</a></div></div>
|
||||
<div class="ttc" id="aclassbeast_1_1IP_1_1Endpoint_html_a63fa66c4eb0d68359a0ff642891493c5"><div class="ttname"><a href="classbeast_1_1IP_1_1Endpoint.html#a63fa66c4eb0d68359a0ff642891493c5">beast::IP::Endpoint::address</a></div><div class="ttdeci">Address const & address() const</div><div class="ttdoc">Returns the address portion of this endpoint.</div><div class="ttdef"><b>Definition:</b> <a href="IPEndpoint_8h_source.html#l00076">IPEndpoint.h:76</a></div></div>
|
||||
<div class="ttc" id="aclassbeast_1_1detail_1_1aged__ordered__container_html_a076852dc66b9f7ec844ea7fd24709d92"><div class="ttname"><a href="classbeast_1_1detail_1_1aged__ordered__container.html#a076852dc66b9f7ec844ea7fd24709d92">beast::detail::aged_ordered_container::insert</a></div><div class="ttdeci">auto insert(value_type const &value) -> typename std::enable_if<!maybe_multi, std::pair< iterator, bool >>::type</div><div class="ttdef"><b>Definition:</b> <a href="aged__ordered__container_8h_source.html#l01769">aged_ordered_container.h:1769</a></div></div>
|
||||
<div class="ttc" id="aemplace_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/container/map/emplace.html">std::map::emplace</a></div><div class="ttdeci">T emplace(T... args)</div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Logic_html_a9d44d9f8f30da541c8742feb3e2de894"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Logic.html#a9d44d9f8f30da541c8742feb3e2de894">ripple::PeerFinder::Logic::onRedirects</a></div><div class="ttdeci">void onRedirects(FwdIter first, FwdIter last, boost::asio::ip::tcp::endpoint const &remote_address)</div><div class="ttdef"><b>Definition:</b> <a href="peerfinder_2impl_2Logic_8h_source.html#l01202">peerfinder/impl/Logic.h:1202</a></div></div>
|
||||
@@ -1323,7 +1323,6 @@ $(function() {
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Logic_html_a3e496ffdc67abb8464b072e28dd6a10a"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Logic.html#a3e496ffdc67abb8464b072e28dd6a10a">ripple::PeerFinder::Logic::config_</a></div><div class="ttdeci">Config config_</div><div class="ttdef"><b>Definition:</b> <a href="peerfinder_2impl_2Logic_8h_source.html#l00077">peerfinder/impl/Logic.h:77</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Bootcache_html_a75fff4a2d6e0019a23832ad9c2ad5e82"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Bootcache.html#a75fff4a2d6e0019a23832ad9c2ad5e82">ripple::PeerFinder::Bootcache::periodicActivity</a></div><div class="ttdeci">void periodicActivity()</div><div class="ttdoc">Stores the cache in the persistent database on a timer.</div><div class="ttdef"><b>Definition:</b> <a href="Bootcache_8cpp_source.html#l00199">Bootcache.cpp:199</a></div></div>
|
||||
<div class="ttc" id="aall_any_none_of_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/algorithm/all_any_none_of.html">std::any_of</a></div><div class="ttdeci">T any_of(T... args)</div></div>
|
||||
<div class="ttc" id="anamespaceripple_html_a96888695e8d79474e080c334f149e30a"><div class="ttname"><a href="namespaceripple.html#a96888695e8d79474e080c334f149e30a">ripple::to_string</a></div><div class="ttdeci">std::string to_string(ListDisposition disposition)</div><div class="ttdef"><b>Definition:</b> <a href="ValidatorList_8cpp_source.html#l00045">ValidatorList.cpp:45</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Store_html"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Store.html">ripple::PeerFinder::Store</a></div><div class="ttdoc">Abstract persistence for PeerFinder data.</div><div class="ttdef"><b>Definition:</b> <a href="Store_8h_source.html#l00027">Store.h:27</a></div></div>
|
||||
<div class="ttc" id="aclassbeast_1_1PropertyStream_1_1Set_html"><div class="ttname"><a href="classbeast_1_1PropertyStream_1_1Set.html">beast::PropertyStream::Set</a></div><div class="ttdef"><b>Definition:</b> <a href="PropertyStream_8h_source.html#l00308">PropertyStream.h:308</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Counts_html_afc36f5b9ed4edfc181cbd3fb36cdbf1a"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Counts.html#afc36f5b9ed4edfc181cbd3fb36cdbf1a">ripple::PeerFinder::Counts::can_activate</a></div><div class="ttdeci">bool can_activate(Slot const &s) const</div><div class="ttdoc">Returns true if the slot can become active.</div><div class="ttdef"><b>Definition:</b> <a href="Counts_8h_source.html#l00071">Counts.h:71</a></div></div>
|
||||
@@ -1371,10 +1370,11 @@ $(function() {
|
||||
<div class="ttc" id="aclassbeast_1_1Journal_html_a87d6bd59020d94110027dcab3d9e3357"><div class="ttname"><a href="classbeast_1_1Journal.html#a87d6bd59020d94110027dcab3d9e3357">beast::Journal::info</a></div><div class="ttdeci">Stream info() const</div><div class="ttdef"><b>Definition:</b> <a href="Journal_8h_source.html#l00321">Journal.h:321</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Logic_html_a298da7ca55032f40d03ba37e718c5727"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Logic.html#a298da7ca55032f40d03ba37e718c5727">ripple::PeerFinder::Logic::autoconnect</a></div><div class="ttdeci">std::vector< beast::IP::Endpoint > autoconnect()</div><div class="ttdoc">Create new outbound connection attempts as needed.</div><div class="ttdef"><b>Definition:</b> <a href="peerfinder_2impl_2Logic_8h_source.html#l00467">peerfinder/impl/Logic.h:467</a></div></div>
|
||||
<div class="ttc" id="aerase_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/container/vector/erase.html">std::vector::erase</a></div><div class="ttdeci">T erase(T... args)</div></div>
|
||||
<div class="ttc" id="aclassbeast_1_1IP_1_1Endpoint_html_ad4ea0ccfc9a795efb3d68dcd0a788f5e"><div class="ttname"><a href="classbeast_1_1IP_1_1Endpoint.html#ad4ea0ccfc9a795efb3d68dcd0a788f5e">beast::IP::Endpoint::port</a></div><div class="ttdeci">Port port() const</div><div class="ttdoc">Returns the port number on the endpoint.</div><div class="ttdef"><b>Definition:</b> <a href="IPEndpoint_8h_source.html#l00063">IPEndpoint.h:63</a></div></div>
|
||||
<div class="ttc" id="aclassbeast_1_1IP_1_1Endpoint_html_ad4ea0ccfc9a795efb3d68dcd0a788f5e"><div class="ttname"><a href="classbeast_1_1IP_1_1Endpoint.html#ad4ea0ccfc9a795efb3d68dcd0a788f5e">beast::IP::Endpoint::port</a></div><div class="ttdeci">Port port() const</div><div class="ttdoc">Returns the port number on the endpoint.</div><div class="ttdef"><b>Definition:</b> <a href="IPEndpoint_8h_source.html#l00062">IPEndpoint.h:62</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Counts_html_af54b70d024505d7baeda2e03b9946fc6"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Counts.html#af54b70d024505d7baeda2e03b9946fc6">ripple::PeerFinder::Counts::onConfig</a></div><div class="ttdeci">void onConfig(Config const &config)</div><div class="ttdoc">Called when the config is set or changed.</div><div class="ttdef"><b>Definition:</b> <a href="Counts_8h_source.html#l00135">Counts.h:135</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Logic_html_a61838d6edf1ec1d0764635f9932338e8"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Logic.html#a61838d6edf1ec1d0764635f9932338e8">ripple::PeerFinder::Logic::fixed</a></div><div class="ttdeci">bool fixed(beast::IP::Address const &address) const</div><div class="ttdef"><b>Definition:</b> <a href="peerfinder_2impl_2Logic_8h_source.html#l00959">peerfinder/impl/Logic.h:959</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Livecache_html"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Livecache.html">ripple::PeerFinder::Livecache</a></div><div class="ttdoc">The Livecache holds the short-lived relayed Endpoint messages.</div><div class="ttdef"><b>Definition:</b> <a href="Livecache_8h_source.html#l00039">Livecache.h:39</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1SlotImp_html_a0e8b6415b2e19e337568e29e02bba1cc"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1SlotImp.html#a0e8b6415b2e19e337568e29e02bba1cc">ripple::PeerFinder::SlotImp::local_endpoint</a></div><div class="ttdeci">std::optional< beast::IP::Endpoint > const & local_endpoint() const override</div><div class="ttdoc">The local endpoint of the socket, when known.</div><div class="ttdef"><b>Definition:</b> <a href="SlotImp_8h_source.html#l00085">SlotImp.h:85</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Logic_html_ae42e629c10d34bbacc989401fab3f720"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Logic.html#ae42e629c10d34bbacc989401fab3f720">ripple::PeerFinder::Logic::addFixedPeer</a></div><div class="ttdeci">void addFixedPeer(std::string const &name, beast::IP::Endpoint const &ep)</div><div class="ttdef"><b>Definition:</b> <a href="peerfinder_2impl_2Logic_8h_source.html#l00174">peerfinder/impl/Logic.h:174</a></div></div>
|
||||
<div class="ttc" id="aclassbeast_1_1Journal_html"><div class="ttname"><a href="classbeast_1_1Journal.html">beast::Journal</a></div><div class="ttdoc">A generic endpoint for log messages.</div><div class="ttdef"><b>Definition:</b> <a href="Journal_8h_source.html#l00058">Journal.h:58</a></div></div>
|
||||
<div class="ttc" id="anamespacebeast_html_a0d4902fd756aee03082ffc8a6f528792"><div class="ttname"><a href="namespacebeast.html#a0d4902fd756aee03082ffc8a6f528792">beast::expire</a></div><div class="ttdeci">std::enable_if< is_aged_container< AgedContainer >::value, std::size_t >::type expire(AgedContainer &c, std::chrono::duration< Rep, Period > const &age)</div><div class="ttdoc">Expire aged container items past the specified age.</div><div class="ttdef"><b>Definition:</b> <a href="aged__container__utility_8h_source.html#l00033">aged_container_utility.h:33</a></div></div>
|
||||
@@ -1427,12 +1427,12 @@ $(function() {
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Logic_html_a4ec2c55d5afe87217b4348f71291229b"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Logic.html#a4ec2c55d5afe87217b4348f71291229b">ripple::PeerFinder::Logic::preprocess</a></div><div class="ttdeci">void preprocess(SlotImp::ptr const &slot, Endpoints &list)</div><div class="ttdef"><b>Definition:</b> <a href="peerfinder_2impl_2Logic_8h_source.html#l00693">peerfinder/impl/Logic.h:693</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Logic_html_a952b77af54a34b53aed9b4432205b760"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Logic.html#a952b77af54a34b53aed9b4432205b760">ripple::PeerFinder::Logic::slots_</a></div><div class="ttdeci">Slots slots_</div><div class="ttdef"><b>Definition:</b> <a href="peerfinder_2impl_2Logic_8h_source.html#l00092">peerfinder/impl/Logic.h:92</a></div></div>
|
||||
<div class="ttc" id="aclassbeast_1_1Journal_html_a556228cb60bcf405c225d3f64b7b01ae"><div class="ttname"><a href="classbeast_1_1Journal.html#a556228cb60bcf405c225d3f64b7b01ae">beast::Journal::debug</a></div><div class="ttdeci">Stream debug() const</div><div class="ttdef"><b>Definition:</b> <a href="Journal_8h_source.html#l00315">Journal.h:315</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1SlotImp_html_a5a9f54ba86fb0f3cd1e1d1854405e603"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1SlotImp.html#a5a9f54ba86fb0f3cd1e1d1854405e603">ripple::PeerFinder::SlotImp::local_endpoint</a></div><div class="ttdeci">boost::optional< beast::IP::Endpoint > const & local_endpoint() const override</div><div class="ttdoc">The local endpoint of the socket, when known.</div><div class="ttdef"><b>Definition:</b> <a href="SlotImp_8h_source.html#l00085">SlotImp.h:85</a></div></div>
|
||||
<div class="ttc" id="asize_t_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/types/size_t.html">std::size_t</a></div></div>
|
||||
<div class="ttc" id="anamespaceripple_html_af9776f187d3686a7fba4c2d2fbeebdf4"><div class="ttname"><a href="namespaceripple.html#af9776f187d3686a7fba4c2d2fbeebdf4">ripple::to_string</a></div><div class="ttdeci">std::string to_string(Manifest const &m)</div><div class="ttdoc">Format the specified manifest to a string for debugging purposes.</div><div class="ttdef"><b>Definition:</b> <a href="app_2misc_2impl_2Manifest_8cpp_source.html#l00038">app/misc/impl/Manifest.cpp:38</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Bootcache_html_abfe8674d0ed4a7c7cf3d3fcfd7e825ea"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Bootcache.html#abfe8674d0ed4a7c7cf3d3fcfd7e825ea">ripple::PeerFinder::Bootcache::begin</a></div><div class="ttdeci">const_iterator begin() const</div><div class="ttdoc">IP::Endpoint iterators that traverse in decreasing valence.</div><div class="ttdef"><b>Definition:</b> <a href="Bootcache_8cpp_source.html#l00055">Bootcache.cpp:55</a></div></div>
|
||||
<div class="ttc" id="amake_pair_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/utility/pair/make_pair.html">std::make_pair</a></div><div class="ttdeci">T make_pair(T... args)</div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Logic_html_a2a680700bb8255aa3392f2eff6fa831b"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Logic.html#a2a680700bb8255aa3392f2eff6fa831b">ripple::PeerFinder::Logic::is_valid_address</a></div><div class="ttdeci">bool is_valid_address(beast::IP::Endpoint const &address)</div><div class="ttdef"><b>Definition:</b> <a href="peerfinder_2impl_2Logic_8h_source.html#l01088">peerfinder/impl/Logic.h:1088</a></div></div>
|
||||
<div class="ttc" id="aclassbeast_1_1IP_1_1Endpoint_html"><div class="ttname"><a href="classbeast_1_1IP_1_1Endpoint.html">beast::IP::Endpoint</a></div><div class="ttdoc">A version-independent IP address and port combination.</div><div class="ttdef"><b>Definition:</b> <a href="IPEndpoint_8h_source.html#l00039">IPEndpoint.h:39</a></div></div>
|
||||
<div class="ttc" id="aclassbeast_1_1IP_1_1Endpoint_html"><div class="ttname"><a href="classbeast_1_1IP_1_1Endpoint.html">beast::IP::Endpoint</a></div><div class="ttdoc">A version-independent IP address and port combination.</div><div class="ttdef"><b>Definition:</b> <a href="IPEndpoint_8h_source.html#l00038">IPEndpoint.h:38</a></div></div>
|
||||
<div class="ttc" id="aend_html"><div class="ttname"><a href="http://en.cppreference.com/w/cpp/container/map/end.html">std::map::end</a></div><div class="ttdeci">T end(T... args)</div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1SlotImp_html_a8c08660cc573d88d0a9503a29fccf3ba"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1SlotImp.html#a8c08660cc573d88d0a9503a29fccf3ba">ripple::PeerFinder::SlotImp::ptr</a></div><div class="ttdeci">std::shared_ptr< SlotImp > ptr</div><div class="ttdef"><b>Definition:</b> <a href="SlotImp_8h_source.html#l00039">SlotImp.h:39</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1PeerFinder_1_1Config_html_a2aa0119410e7741efd384492c1e5a3b9"><div class="ttname"><a href="structripple_1_1PeerFinder_1_1Config.html#a2aa0119410e7741efd384492c1e5a3b9">ripple::PeerFinder::Config::autoConnect</a></div><div class="ttdeci">bool autoConnect</div><div class="ttdoc">true if we want to establish connections automatically</div><div class="ttdef"><b>Definition:</b> <a href="PeerfinderManager_8h_source.html#l00068">PeerfinderManager.h:68</a></div></div>
|
||||
@@ -1440,7 +1440,7 @@ $(function() {
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Counts_html_a6424cf95bb9f64a6970334c578d02c6e"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Counts.html#a6424cf95bb9f64a6970334c578d02c6e">ripple::PeerFinder::Counts::attempts_needed</a></div><div class="ttdeci">std::size_t attempts_needed() const</div><div class="ttdoc">Returns the number of attempts needed to bring us to the max.</div><div class="ttdef"><b>Definition:</b> <a href="Counts_8h_source.html#l00087">Counts.h:87</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Logic_html_a31f8cf137e2aa6e827f49bee762591a3"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Logic.html#a31f8cf137e2aa6e827f49bee762591a3">ripple::PeerFinder::Logic::on_closed</a></div><div class="ttdeci">void on_closed(SlotImp::ptr const &slot)</div><div class="ttdef"><b>Definition:</b> <a href="peerfinder_2impl_2Logic_8h_source.html#l00876">peerfinder/impl/Logic.h:876</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1SlotImp_html_ab05ca3e1236ac84b172b6f49fb66de52"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1SlotImp.html#ab05ca3e1236ac84b172b6f49fb66de52">ripple::PeerFinder::SlotImp::state</a></div><div class="ttdeci">State state() const override</div><div class="ttdoc">Returns the state of the connection.</div><div class="ttdef"><b>Definition:</b> <a href="SlotImp_8h_source.html#l00073">SlotImp.h:73</a></div></div>
|
||||
<div class="ttc" id="aclassbeast_1_1IP_1_1Endpoint_html_a7336271ad6a45e88f485d8fccc7cd4a2"><div class="ttname"><a href="classbeast_1_1IP_1_1Endpoint.html#a7336271ad6a45e88f485d8fccc7cd4a2">beast::IP::Endpoint::at_port</a></div><div class="ttdeci">Endpoint at_port(Port port) const</div><div class="ttdoc">Returns a new Endpoint with a different port.</div><div class="ttdef"><b>Definition:</b> <a href="IPEndpoint_8h_source.html#l00070">IPEndpoint.h:70</a></div></div>
|
||||
<div class="ttc" id="aclassbeast_1_1IP_1_1Endpoint_html_a7336271ad6a45e88f485d8fccc7cd4a2"><div class="ttname"><a href="classbeast_1_1IP_1_1Endpoint.html#a7336271ad6a45e88f485d8fccc7cd4a2">beast::IP::Endpoint::at_port</a></div><div class="ttdeci">Endpoint at_port(Port port) const</div><div class="ttdoc">Returns a new Endpoint with a different port.</div><div class="ttdef"><b>Definition:</b> <a href="IPEndpoint_8h_source.html#l00069">IPEndpoint.h:69</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1Logic_html_a541bee2a21b36b73f867e93aa2ac1d2b"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1Logic.html#a541bee2a21b36b73f867e93aa2ac1d2b">ripple::PeerFinder::Logic::livecache_</a></div><div class="ttdeci">Livecache livecache_</div><div class="ttdef"><b>Definition:</b> <a href="peerfinder_2impl_2Logic_8h_source.html#l00086">peerfinder/impl/Logic.h:86</a></div></div>
|
||||
<div class="ttc" id="astructripple_1_1PeerFinder_1_1Endpoint_html_afad10bc9649cff5ad68f6a87aae15018"><div class="ttname"><a href="structripple_1_1PeerFinder_1_1Endpoint.html#afad10bc9649cff5ad68f6a87aae15018">ripple::PeerFinder::Endpoint::hops</a></div><div class="ttdeci">int hops</div><div class="ttdef"><b>Definition:</b> <a href="PeerfinderManager_8h_source.html#l00120">PeerfinderManager.h:120</a></div></div>
|
||||
<div class="ttc" id="aclassripple_1_1PeerFinder_1_1SlotImp_html"><div class="ttname"><a href="classripple_1_1PeerFinder_1_1SlotImp.html">ripple::PeerFinder::SlotImp</a></div><div class="ttdef"><b>Definition:</b> <a href="SlotImp_8h_source.html#l00033">SlotImp.h:33</a></div></div>
|
||||
|
||||
Reference in New Issue
Block a user