i2pd/Profiling.h

48 lines
1.0 KiB
C
Raw Normal View History

2015-03-24 19:47:57 +03:00
#ifndef PROFILING_H__
#define PROFILING_H__
#include <memory>
#include "Identity.h"
namespace i2p
{
namespace data
{
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";
const char PEER_PROFILE_PARTICIPATION_NON_REPLIED[] = "nonreplied";
2015-03-24 19:47:57 +03:00
class RouterProfile
{
public:
RouterProfile (const IdentHash& identHash);
2015-03-25 15:45:50 +03:00
void Save ();
2015-03-25 15:45:50 +03:00
void Load ();
2015-03-28 03:34:31 +03:00
bool IsBad () const { return !m_NumTunnelsAgreed && m_NumTunnelsDeclined >= 5; };
void TunnelBuildResponse (uint8_t ret);
void TunnelNonReplied ();
2015-03-24 19:47:57 +03:00
private:
IdentHash m_IdentHash;
// participation
uint32_t m_NumTunnelsAgreed;
uint32_t m_NumTunnelsDeclined;
uint32_t m_NumTunnelsNonReplied;
2015-03-24 19:47:57 +03:00
};
std::shared_ptr<RouterProfile> GetRouterProfile (const IdentHash& identHash);
2015-03-24 19:47:57 +03:00
}
}
#endif