[#CConnman-OpenNetworkConnection] = xref:CConnman.adoc[CConnman]::OpenNetworkConnection :relfileprefix: ../ :mrdocs: Open a new P2P connection and initialize it with the PeerManager at `m_msgproc`. == Synopsis Declared in `<net.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[requires_capability(0x7f950f5fde58, 0x7f950f5fdf18), requires_capability(0x7f950ed86688, 0x7f950ed86748), requires_capability(0x7f950b48e8f8, 0x7f950b48e9b8), requires_capability(0x7f95034d1518, 0x7f95034d15d8), requires_capability(0x7f950e20e8e8, 0x7f950e20e9a8), requires_capability(0x7f9527746588, 0x7f9527746648), requires_capability(0x7f950c323718, 0x7f950c3237d8), requires_capability(0x7f950c23f348, 0x7f950c23f408), requires_capability(0x7f95018b8af8, 0x7f95018b8bb8), requires_capability(0x7f950bd909a8, 0x7f950bd90a68), requires_capability(0x7f95065c80a8, 0x7f95065c8168)]] bool OpenNetworkConnection( xref:CAddress.adoc[CAddress] const& addrConnect, bool fCountFailure, xref:CountingSemaphoreGrant.adoc[CountingSemaphoreGrant<>]&& grant_outbound, char const* pszDest, xref:ConnectionType.adoc[ConnectionType] conn_type, bool use_v2transport, std::optional<Proxy> const& proxy_override); ---- == Return Value whether the connection was opened successfully. == Parameters [cols="1,4"] |=== | Name| Description | *addrConnect* [in] | Address to connect to, if `pszDest` is `nullptr`. | *fCountFailure* [in] | Increment the number of connection attempts to this address in Addrman. | *grant_outbound* [in] | Take ownership of this grant, to be released later when the connection is closed. | *pszDest* [in] | Address to resolve and connect to. | *conn_type* [in] | Type of the connection to open, must not be `ConnectionType::INBOUND`. | *use_v2transport* [in] | Use P2P encryption, (aka V2 transport, BIP324). | *proxy_override* [in] | Optional proxy to use and override normal proxy selection. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#