2013-11-25 03:10:27 +04:00
|
|
|
#ifndef LEASE_SET_H__
|
|
|
|
#define LEASE_SET_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <list>
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace data
|
|
|
|
{
|
|
|
|
#pragma pack(1)
|
|
|
|
struct Lease
|
|
|
|
{
|
|
|
|
uint8_t tunnelGateway[32];
|
|
|
|
uint32_t tunnelID;
|
|
|
|
uint64_t endDate;
|
|
|
|
};
|
|
|
|
#pragma pack()
|
|
|
|
|
|
|
|
class RoutingDestination // TODO: move to separate file later
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual const uint8_t * GetIdentHash () const = 0;
|
|
|
|
virtual const uint8_t * GetEncryptionPublicKey () const = 0;
|
2013-11-27 05:59:25 +04:00
|
|
|
virtual bool IsDestination () const = 0; // for garlic
|
2013-11-25 03:10:27 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
class LeaseSet: public RoutingDestination
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
LeaseSet (const uint8_t * buf, int len);
|
|
|
|
|
|
|
|
// implements RoutingDestination
|
|
|
|
const uint8_t * GetIdentHash () const { return m_IdentHash; };
|
|
|
|
const uint8_t * GetEncryptionPublicKey () const { return m_EncryptionKey; };
|
2013-11-27 05:59:25 +04:00
|
|
|
bool IsDestination () const { return true; };
|
2013-11-25 03:10:27 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
std::list<Lease> m_Leases;
|
|
|
|
uint8_t m_IdentHash[32];
|
|
|
|
uint8_t m_EncryptionKey[256];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|