1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-24 10:14:13 +00:00
i2pd/Profiling.h

48 lines
1.0 KiB
C
Raw Normal View History

2015-03-24 12:47:57 -04: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 12:47:57 -04:00
class RouterProfile
{
public:
RouterProfile (const IdentHash& identHash);
2015-03-25 08:45:50 -04:00
void Save ();
2015-03-25 08:45:50 -04:00
void Load ();
2015-03-27 20:34:31 -04:00
bool IsBad () const { return !m_NumTunnelsAgreed && m_NumTunnelsDeclined >= 5; };
void TunnelBuildResponse (uint8_t ret);
void TunnelNonReplied ();
2015-03-24 12:47:57 -04:00
private:
IdentHash m_IdentHash;
// participation
uint32_t m_NumTunnelsAgreed;
uint32_t m_NumTunnelsDeclined;
uint32_t m_NumTunnelsNonReplied;
2015-03-24 12:47:57 -04:00
};
std::shared_ptr<RouterProfile> GetRouterProfile (const IdentHash& identHash);
2015-03-24 12:47:57 -04:00
}
}
#endif