mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 22:25:04 -04:00
fixed merge with upstream
This commit is contained in:
commit
5b9666855d
241 changed files with 20561 additions and 3381 deletions
|
@ -34,7 +34,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <grouter/grouteritems.h>
|
||||
|
||||
class RsItem ;
|
||||
struct RsItem;
|
||||
|
||||
static const uint32_t GROUTER_CLIENT_SERVICE_DATA_STATUS_UNKNOWN = 0x0000 ; // unused.
|
||||
static const uint32_t GROUTER_CLIENT_SERVICE_DATA_STATUS_RECEIVED = 0x0001 ; // sent when data has been received and a receipt is available.
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include "retroshare/rsgrouter.h"
|
||||
#include "groutertypes.h"
|
||||
|
||||
class RsItem ;
|
||||
struct RsItem;
|
||||
|
||||
// The routing matrix records the event clues received from each friend
|
||||
//
|
||||
|
|
|
@ -541,7 +541,7 @@ if(itm == NULL)
|
|||
|
||||
void GRouterTunnelInfo::removeVirtualPeer(const TurtleVirtualPeerId& vpid)
|
||||
{
|
||||
std::set<TurtleVirtualPeerId,RsGRouterTransactionChunkItem*>::iterator it = virtual_peers.find(vpid) ;
|
||||
std::set<TurtleVirtualPeerId>::iterator it = virtual_peers.find(vpid) ;
|
||||
|
||||
if(it == virtual_peers.end())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue