2015-03-24 19:47:57 +03:00
|
|
|
#ifndef PROFILING_H__
|
|
|
|
#define PROFILING_H__
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include "Identity.h"
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace data
|
2015-03-25 01:48:16 +03:00
|
|
|
{
|
|
|
|
const char PEER_PROFILES_DIRECTORY[] = "peerProfiles";
|
|
|
|
const char PEER_PROFILE_PREFIX[] = "profile-";
|
|
|
|
// sections
|
|
|
|
const char PEER_PROFILE_SECTION_PARTICIPATION[] = "participation";
|
|
|
|
// params
|
|
|
|
const char PEER_PROFILE_PARTICIPATION_AGREED[] = "agreed";
|
|
|
|
const char PEER_PROFILE_PARTICIPATION_DECLINED[] = "declined";
|
|
|
|
|
2015-03-24 19:47:57 +03:00
|
|
|
class RouterProfile
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
RouterProfile (const IdentHash& identHash);
|
2015-03-25 01:48:16 +03:00
|
|
|
void Save ();
|
|
|
|
|
|
|
|
void TunnelBuildResponse (uint8_t ret);
|
2015-03-24 19:47:57 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
IdentHash m_IdentHash;
|
|
|
|
// participation
|
|
|
|
uint32_t m_NumTunnelsAgreed;
|
|
|
|
uint32_t m_NumTunnelsDeclined;
|
|
|
|
};
|
|
|
|
|
2015-03-25 01:48:16 +03:00
|
|
|
std::shared_ptr<RouterProfile> GetRouterProfile (const IdentHash& identHash);
|
2015-03-24 19:47:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|