mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-27 00:19:25 -05:00
renamed mispelled functions
This commit is contained in:
parent
1fe3664007
commit
4916c3925f
@ -59,6 +59,9 @@ static const uint32_t INDEX_AUTHEN_IDENTITY = 0x00000010; // identity
|
|||||||
static const uint32_t INDEX_AUTHEN_PUBLISH = 0x00000020; // publish key
|
static const uint32_t INDEX_AUTHEN_PUBLISH = 0x00000020; // publish key
|
||||||
static const uint32_t INDEX_AUTHEN_ADMIN = 0x00000040; // admin key
|
static const uint32_t INDEX_AUTHEN_ADMIN = 0x00000040; // admin key
|
||||||
|
|
||||||
|
static const uint32_t MSG_CLEANUP_PERIOD = 60*59; // 59 minutes
|
||||||
|
static const uint32_t INTEGRITY_CHECK_PERIOD = 60*31; // 31 minutes
|
||||||
|
|
||||||
#define GXS_MASK "GXS_MASK_HACK"
|
#define GXS_MASK "GXS_MASK_HACK"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -132,9 +135,6 @@ static const uint32_t INDEX_AUTHEN_ADMIN = 0x00000040; // admin key
|
|||||||
// +--- processRoutingClues() ;
|
// +--- processRoutingClues() ;
|
||||||
//
|
//
|
||||||
|
|
||||||
static const uint32_t MSG_CLEANUP_PERIOD = 60*59; // 59 minutes
|
|
||||||
static const uint32_t INTEGRITY_CHECK_PERIOD = 60*31; // 31 minutes
|
|
||||||
|
|
||||||
RsGenExchange::RsGenExchange(
|
RsGenExchange::RsGenExchange(
|
||||||
RsGeneralDataService* gds, RsNetworkExchangeService* ns,
|
RsGeneralDataService* gds, RsNetworkExchangeService* ns,
|
||||||
RsSerialType* serviceSerialiser, uint16_t servType, RsGixs* gixs,
|
RsSerialType* serviceSerialiser, uint16_t servType, RsGixs* gixs,
|
||||||
@ -1599,8 +1599,8 @@ bool RsGenExchange::getMsgRelatedData( uint32_t token,
|
|||||||
const RsGxsGrpMsgIdPair& msgId = mit->first;
|
const RsGxsGrpMsgIdPair& msgId = mit->first;
|
||||||
std::vector<RsGxsMsgItem*> &gxsMsgItems = msgItems[msgId];
|
std::vector<RsGxsMsgItem*> &gxsMsgItems = msgItems[msgId];
|
||||||
std::vector<RsNxsMsg*>& nxsMsgsV = mit->second;
|
std::vector<RsNxsMsg*>& nxsMsgsV = mit->second;
|
||||||
std::vector<RsNxsMsg*>::iterator vit = nxsMsgsV.begin();
|
|
||||||
for(; vit != nxsMsgsV.end(); ++vit)
|
for(auto vit=nxsMsgsV.begin(); vit != nxsMsgsV.end(); ++vit)
|
||||||
{
|
{
|
||||||
RsNxsMsg*& msg = *vit;
|
RsNxsMsg*& msg = *vit;
|
||||||
RsItem* item = NULL;
|
RsItem* item = NULL;
|
||||||
|
@ -276,7 +276,7 @@ private:
|
|||||||
* @param token the value of the token for the request object handle wanted
|
* @param token the value of the token for the request object handle wanted
|
||||||
* @return the request associated to this token
|
* @return the request associated to this token
|
||||||
*/
|
*/
|
||||||
GxsRequest* locked_retrieveCompetedRequest(const uint32_t& token);
|
GxsRequest* locked_retrieveCompletedRequest(const uint32_t& token);
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Add a gxs request to queue
|
* Add a gxs request to queue
|
||||||
|
Loading…
Reference in New Issue
Block a user