1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-08 22:57:52 +00:00
i2pd/Reseed.h

37 lines
529 B
C
Raw Normal View History

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