I2P: End-to-End encrypted and anonymous Internet https://i2pd.website/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
822 B

9 years ago
#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";
9 years ago
class RouterProfile
{
public:
RouterProfile (const IdentHash& identHash);
void Save ();
void TunnelBuildResponse (uint8_t ret);
9 years ago
private:
IdentHash m_IdentHash;
// participation
uint32_t m_NumTunnelsAgreed;
uint32_t m_NumTunnelsDeclined;
};
std::shared_ptr<RouterProfile> GetRouterProfile (const IdentHash& identHash);
9 years ago
}
}
#endif