mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
137 lines
3.3 KiB
C
137 lines
3.3 KiB
C
|
#ifndef RETROSHARE_DHT_GUI_INTERFACE_H
|
||
|
#define RETROSHARE_DHT_GUI_INTERFACE_H
|
||
|
|
||
|
/*
|
||
|
* libretroshare/src/rsiface: rsdht.h
|
||
|
*
|
||
|
* RetroShare C++ Interface.
|
||
|
*
|
||
|
* Copyright 2011-2011 by Robert Fernie.
|
||
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Library General Public
|
||
|
* License Version 2 as published by the Free Software Foundation.
|
||
|
*
|
||
|
* This library is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
* Library General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Library General Public
|
||
|
* License along with this library; if not, write to the Free Software
|
||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
||
|
* USA.
|
||
|
*
|
||
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include <inttypes.h>
|
||
|
#include <string>
|
||
|
#include <list>
|
||
|
|
||
|
/* The Main Interface Class - for information about your Peers */
|
||
|
class RsDht;
|
||
|
extern RsDht *rsDht;
|
||
|
|
||
|
|
||
|
//std::ostream &operator<<(std::ostream &out, const RsPhotoShowDetails &detail);
|
||
|
//std::ostream &operator<<(std::ostream &out, const RsPhotoDetails &detail);
|
||
|
|
||
|
|
||
|
#define RS_DHT_NETSTART_NETWORKMODE 0x0001
|
||
|
#define RS_DHT_NETSTART_NATTYPE 0x0002
|
||
|
#define RS_DHT_NETSTART_NATHOLE 0x0003
|
||
|
#define RS_DHT_NETSTART_CONNECTMODES 0x0004
|
||
|
#define RS_DHT_NETSTART_NETSTATE 0x0005
|
||
|
|
||
|
class RsDhtPeer
|
||
|
{
|
||
|
public:
|
||
|
RsDhtPeer();
|
||
|
|
||
|
int mBucket;
|
||
|
std::string mDhtId;
|
||
|
std::string mAddr;
|
||
|
time_t mLastSendTime;
|
||
|
time_t mLastRecvTime;
|
||
|
time_t mFoundTime;
|
||
|
uint32_t mPeerFlags;
|
||
|
uint32_t mExtraFlags;
|
||
|
};
|
||
|
|
||
|
class RsDhtNetPeer
|
||
|
{
|
||
|
public:
|
||
|
RsDhtNetPeer();
|
||
|
|
||
|
std::string mDhtId;
|
||
|
std::string mRsId;
|
||
|
|
||
|
};
|
||
|
|
||
|
class RsDhtRelayEnd
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
RsDhtRelayEnd();
|
||
|
std::string mLocalAddr;
|
||
|
std::string mProxyAddr;
|
||
|
std::string mRemoteAddr;
|
||
|
time_t mCreateTS;
|
||
|
};
|
||
|
|
||
|
class RsDhtRelayProxy
|
||
|
{
|
||
|
public:
|
||
|
RsDhtRelayProxy();
|
||
|
|
||
|
std::string mSrcAddr;
|
||
|
std::string mDestAddr;
|
||
|
|
||
|
double mBandwidth;
|
||
|
int mRelayClass;
|
||
|
time_t mLastTS;
|
||
|
time_t mCreateTS;
|
||
|
|
||
|
//uint32_t mDataSize;
|
||
|
//time_t mLastBandwidthTS;
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
class RsDht
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
RsDht() { return; }
|
||
|
virtual ~RsDht() { return; }
|
||
|
|
||
|
virtual uint32_t getNetState(uint32_t type) = 0;
|
||
|
virtual int getDhtPeers(int lvl, std::list<RsDhtPeer> &peers) = 0;
|
||
|
virtual int getNetPeerList(std::list<std::string> &peerIds) = 0;
|
||
|
virtual int getNetPeerStatus(std::string peerId, RsDhtNetPeer &status) = 0;
|
||
|
|
||
|
virtual int getRelayEnds(std::list<RsDhtRelayEnd> &relayEnds) = 0;
|
||
|
virtual int getRelayProxies(std::list<RsDhtRelayProxy> &relayProxies) = 0;
|
||
|
|
||
|
//virtual int getNetFailedPeer(std::string peerId, PeerStatus &status);
|
||
|
|
||
|
#if 0
|
||
|
virtual std::string getPeerStatusString();
|
||
|
virtual std::string getPeerAddressString();
|
||
|
virtual std::string getDhtStatusString();
|
||
|
|
||
|
virtual int get_dht_queries(std::map<bdNodeId, bdQueryStatus> &queries);
|
||
|
virtual int get_query_status(std::string id, bdQuerySummary &query);
|
||
|
|
||
|
virtual int get_peer_status(std::string peerId, PeerStatus &status);
|
||
|
|
||
|
virtual int get_net_failedpeers(std::list<std::string> &peerIds);
|
||
|
virtual int get_failedpeer_status(std::string peerId, PeerStatus &status);
|
||
|
#endif
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|