net: move semOutbound to CConnman

This commit is contained in:
Cory Fields 2016-04-19 00:15:52 -04:00
parent bd72937dc4
commit 8a593694b1
2 changed files with 3 additions and 2 deletions

View file

@ -84,8 +84,6 @@ std::string strSubVersion;
limitedmap<uint256, int64_t> mapAlreadyAskedFor(MAX_INV_SZ);
static CSemaphore *semOutbound = NULL;
// Signals for message handling
static CNodeSignals g_signals;
CNodeSignals& GetNodeSignals() { return g_signals; }
@ -2039,6 +2037,7 @@ CConnman::CConnman()
nLastNodeId = 0;
nSendBufferMaxSize = 0;
nReceiveFloodSize = 0;
semOutbound = NULL;
}
bool StartNode(CConnman& connman, boost::thread_group& threadGroup, CScheduler& scheduler, ServiceFlags nLocalServices, ServiceFlags nRelevantServices, std::string& strNodeError)

View file

@ -282,6 +282,8 @@ private:
/** Services this instance cares about */
ServiceFlags nRelevantServices;
CSemaphore *semOutbound;
};
extern std::unique_ptr<CConnman> g_connman;
void MapPort(bool fUseUPnP);