mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-11-02 09:40:18 +00:00
23 lines
203 B
C
23 lines
203 B
C
|
#ifndef RESEED_H
|
||
|
#define RESEED_H
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
namespace i2p
|
||
|
{
|
||
|
namespace data
|
||
|
{
|
||
|
|
||
|
class Reseeder
|
||
|
{
|
||
|
public:
|
||
|
Reseeder();
|
||
|
~Reseeder();
|
||
|
bool reseedNow();
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|