mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2026-03-30 19:25:50 +00:00
Some checks failed
Build on OSX / Build on ARM64 (push) Has been cancelled
Build on OSX / Build on Intel x86_64 (push) Has been cancelled
Build on Ubuntu / CMake with -DWITH_UPNP=ON (push) Failing after 3h4m31s
Build on Windows / clang-x86_64 (push) Has been cancelled
Build on Windows / i686 (push) Has been cancelled
Build on Windows / ucrt-x86_64 (push) Has been cancelled
Build on Windows / x86_64 (push) Has been cancelled
Build on Windows / CMake clang-x86_64 (push) Has been cancelled
Build on Windows / CMake i686 (push) Has been cancelled
Build on Windows / CMake ucrt-x86_64 (push) Has been cancelled
Build on Windows / CMake x86_64 (push) Has been cancelled
Build on Windows / XP (push) Has been cancelled
Build Debian packages / bookworm (push) Failing after 16s
Build Debian packages / bullseye (push) Failing after 14s
Build Debian packages / trixie (push) Failing after 15s
Build on FreeBSD / with UPnP (push) Failing after 14m30s
Build on Ubuntu / CMake with -DWITH_UPNP=OFF (push) Failing after 15m36s
Build on Ubuntu / Make with USE_UPNP=no (push) Failing after 3h4m33s
Build containers / Building container for linux/amd64 (push) Failing after 29s
Build containers / Building container for linux/arm64 (push) Failing after 32s
Build containers / Building container for linux/arm/v7 (push) Failing after 29s
Build containers / Building container for linux/386 (push) Failing after 26s
Build containers / Pushing merged manifest (push) Has been skipped
Build on Ubuntu / Make with USE_UPNP=yes (push) Failing after 3h14m30s
64 lines
1.3 KiB
C++
64 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2013-2025, The PurpleI2P Project
|
|
*
|
|
* This file is part of Purple i2pd project and licensed under BSD3
|
|
*
|
|
* See full license text in LICENSE file at top of project tree
|
|
*/
|
|
|
|
#ifndef RESEED_H
|
|
#define RESEED_H
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
#include "Identity.h"
|
|
#include "Crypto.h"
|
|
|
|
namespace i2p
|
|
{
|
|
namespace data
|
|
{
|
|
constexpr int MAX_NUM_RESEED_ATTEMPTS = 10;
|
|
constexpr int RESEED_CONNECT_TIMEOUT = 5; // in seconds
|
|
|
|
class Reseeder
|
|
{
|
|
typedef Tag<512> PublicKey;
|
|
|
|
public:
|
|
|
|
Reseeder();
|
|
~Reseeder();
|
|
void Bootstrap ();
|
|
int ReseedFromServers ();
|
|
int ProcessSU3File (const char * filename);
|
|
int ProcessZIPFile (const char * filename);
|
|
|
|
void LoadCertificates ();
|
|
|
|
private:
|
|
|
|
int ReseedFromSU3Url (const std::string& url, bool isHttps = true);
|
|
void LoadCertificate (const std::string& filename);
|
|
|
|
int ProcessSU3Stream (std::istream& s);
|
|
int ProcessZIPStream (std::istream& s, uint64_t contentLength);
|
|
|
|
bool FindZipDataDescriptor (std::istream& s);
|
|
|
|
std::string HttpsRequest (const std::string& address);
|
|
std::string YggdrasilRequest (const std::string& address);
|
|
template<typename Stream>
|
|
std::string ReseedRequest (Stream& s, const std::string& uri);
|
|
|
|
private:
|
|
|
|
std::map<std::string, PublicKey> m_SigningKeys;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|