mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Don't require the very latest version of Boost.
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
#ifndef __UNIQUE_NODE_LIST__
|
||||
#define __UNIQUE_NODE_LIST__
|
||||
|
||||
#include <deque>
|
||||
|
||||
#include "../json/value.h"
|
||||
|
||||
#include "NewcoinAddress.h"
|
||||
@@ -8,7 +10,6 @@
|
||||
#include "HttpsClient.h"
|
||||
|
||||
#include <boost/thread/mutex.hpp>
|
||||
#include <boost/container/deque.hpp>
|
||||
|
||||
// Guarantees minimum thoughput of 1 node per second.
|
||||
#define NODE_FETCH_JOBS 10
|
||||
@@ -27,7 +28,7 @@ private:
|
||||
|
||||
boost::mutex mFetchLock;
|
||||
int mFetchActive; // count of active fetches
|
||||
boost::container::deque<std::string> mFetchPending;
|
||||
std::deque<std::string> mFetchPending;
|
||||
|
||||
void fetchNext();
|
||||
void fetchProcess(std::string strDomain);
|
||||
|
||||
Reference in New Issue
Block a user