renamed mispelled functions

This commit is contained in:
csoler 2020-12-30 20:16:44 +01:00
parent 1fe3664007
commit 4916c3925f
2 changed files with 6 additions and 6 deletions

View File

@ -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;

View File

@ -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