mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
ad1bc7f3b8
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8047 b45a01b8-16f6-495d-af2f-9b41ad6348cc
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include "ResourceRouter.h"
|
|
#include "StateTokenServer.h"
|
|
#include <retroshare/rsnotify.h>
|
|
#include <util/rsthreads.h>
|
|
|
|
class RsPeers;
|
|
class RsMsgs;
|
|
|
|
namespace resource_api
|
|
{
|
|
|
|
class PeersHandler: public ResourceRouter, NotifyClient, Tickable
|
|
{
|
|
public:
|
|
PeersHandler(StateTokenServer* sts, RsNotify* notify, RsPeers* peers, RsMsgs* msgs);
|
|
virtual ~PeersHandler();
|
|
|
|
// from NotifyClient
|
|
// note: this may get called from foreign threads
|
|
virtual void notifyListChange(int list, int type); // friends list change
|
|
|
|
// from Tickable
|
|
virtual void tick();
|
|
private:
|
|
void handleWildcard(Request& req, Response& resp);
|
|
void handleExamineCert(Request& req, Response& resp);
|
|
|
|
// a helper which ensures proper mutex locking
|
|
StateToken getCurrentStateToken();
|
|
|
|
StateTokenServer* mStateTokenServer;
|
|
RsNotify* mNotify;
|
|
RsPeers* mRsPeers;
|
|
RsMsgs* mRsMsgs; // required for avatar data
|
|
|
|
std::list<RsPeerId> mOnlinePeers;
|
|
|
|
RsMutex mMtx;
|
|
StateToken mStateToken; // mutex protected
|
|
};
|
|
} // namespace resource_api
|