// Copyright (c) 2014-2017 The Dash Core developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef NETFULFILLEDMAN_H #define NETFULFILLEDMAN_H #include "netaddress.h" #include "serialize.h" #include "sync.h" class CNetFulfilledRequestManager; extern CNetFulfilledRequestManager netfulfilledman; // Fulfilled requests are used to prevent nodes from asking for the same data on sync // and from being banned for doing so too often. class CNetFulfilledRequestManager { private: typedef std::map fulfilledreqmapentry_t; typedef std::map fulfilledreqmap_t; //keep track of what node has/was asked for and when fulfilledreqmap_t mapFulfilledRequests; CCriticalSection cs_mapFulfilledRequests; void RemoveFulfilledRequest(const CService& addr, const std::string& strRequest); public: CNetFulfilledRequestManager() {} ADD_SERIALIZE_METHODS; template inline void SerializationOp(Stream& s, Operation ser_action) { LOCK(cs_mapFulfilledRequests); READWRITE(mapFulfilledRequests); } void AddFulfilledRequest(const CService& addr, const std::string& strRequest); bool HasFulfilledRequest(const CService& addr, const std::string& strRequest); void CheckAndRemove(); void Clear(); std::string ToString() const; void DoMaintenance(); }; #endif