mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
30 lines
428 B
C
30 lines
428 B
C
|
#ifndef PROFILING_H__
|
||
|
#define PROFILING_H__
|
||
|
|
||
|
#include <memory>
|
||
|
#include "Identity.h"
|
||
|
|
||
|
namespace i2p
|
||
|
{
|
||
|
namespace data
|
||
|
{
|
||
|
class RouterProfile
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
RouterProfile (const IdentHash& identHash);
|
||
|
|
||
|
private:
|
||
|
|
||
|
IdentHash m_IdentHash;
|
||
|
// participation
|
||
|
uint32_t m_NumTunnelsAgreed;
|
||
|
uint32_t m_NumTunnelsDeclined;
|
||
|
};
|
||
|
|
||
|
std::shared_ptr<RouterProfile> GetProfile (const IdentHash& identHash);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|