2014-01-31 10:22:11 +04:00
|
|
|
#ifndef RESEED_H
|
|
|
|
#define RESEED_H
|
|
|
|
|
2014-12-11 23:41:04 +03:00
|
|
|
#include <iostream>
|
2014-01-31 10:22:11 +04:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace data
|
|
|
|
{
|
|
|
|
|
|
|
|
class Reseeder
|
|
|
|
{
|
|
|
|
public:
|
2014-12-11 23:41:04 +03:00
|
|
|
|
2014-01-31 10:22:11 +04:00
|
|
|
Reseeder();
|
|
|
|
~Reseeder();
|
2014-12-11 23:41:04 +03:00
|
|
|
bool reseedNow(); // depreacted
|
|
|
|
int ReseedNowSU3 ();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
int ReseedFromSU3 (const std::string& host);
|
2014-12-12 18:34:50 +03:00
|
|
|
int ProcessSU3File (const char * filename);
|
|
|
|
int ProcessSU3Stream (std::istream& s);
|
2014-12-12 21:36:02 +03:00
|
|
|
|
|
|
|
bool FindZipDataDescriptor (std::istream& s);
|
|
|
|
|
2014-01-31 10:22:11 +04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-20 22:29:22 +03:00
|
|
|
#endif
|