mirror of https://github.com/PurpleI2P/i2pd.git
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.
29 lines
428 B
29 lines
428 B
#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
|
|
|