2013-11-24 23:10:27 +00:00
|
|
|
#ifndef LEASE_SET_H__
|
|
|
|
#define LEASE_SET_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
2013-11-29 12:52:09 +00:00
|
|
|
#include <string.h>
|
2014-01-01 23:19:03 +00:00
|
|
|
#include <vector>
|
2013-12-20 03:05:45 +00:00
|
|
|
#include "Identity.h"
|
2013-11-24 23:10:27 +00:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace data
|
2013-11-29 12:52:09 +00:00
|
|
|
{
|
|
|
|
|
2013-11-24 23:10:27 +00:00
|
|
|
#pragma pack(1)
|
2013-12-20 02:19:44 +00:00
|
|
|
|
2013-11-24 23:10:27 +00:00
|
|
|
struct Lease
|
|
|
|
{
|
|
|
|
uint8_t tunnelGateway[32];
|
|
|
|
uint32_t tunnelID;
|
|
|
|
uint64_t endDate;
|
2014-02-04 02:57:53 +00:00
|
|
|
|
|
|
|
bool operator< (const Lease& other) const
|
|
|
|
{
|
|
|
|
if (endDate != other.endDate)
|
|
|
|
return endDate > other.endDate;
|
|
|
|
else
|
|
|
|
return tunnelID < other.tunnelID;
|
|
|
|
}
|
2013-11-24 23:10:27 +00:00
|
|
|
};
|
2013-12-20 02:19:44 +00:00
|
|
|
|
2013-11-24 23:10:27 +00:00
|
|
|
#pragma pack()
|
|
|
|
|
|
|
|
class LeaseSet: public RoutingDestination
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
LeaseSet (const uint8_t * buf, int len);
|
2014-01-13 03:31:26 +00:00
|
|
|
LeaseSet (const LeaseSet& ) = default;
|
|
|
|
LeaseSet& operator=(const LeaseSet& ) = default;
|
|
|
|
|
2013-11-24 23:10:27 +00:00
|
|
|
// implements RoutingDestination
|
2013-12-20 03:05:45 +00:00
|
|
|
const Identity& GetIdentity () const { return m_Identity; };
|
2013-11-29 12:52:09 +00:00
|
|
|
const IdentHash& GetIdentHash () const { return m_IdentHash; };
|
2014-01-01 23:19:03 +00:00
|
|
|
const std::vector<Lease>& GetLeases () const { return m_Leases; };
|
2014-03-23 13:25:16 +00:00
|
|
|
const std::vector<Lease> GetNonExpiredLeases () const;
|
2014-01-15 01:57:33 +00:00
|
|
|
bool HasExpiredLeases () const;
|
|
|
|
bool HasNonExpiredLeases () const;
|
2013-11-24 23:10:27 +00:00
|
|
|
const uint8_t * GetEncryptionPublicKey () const { return m_EncryptionKey; };
|
2013-11-27 01:59:25 +00:00
|
|
|
bool IsDestination () const { return true; };
|
2013-11-24 23:10:27 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-01-01 23:19:03 +00:00
|
|
|
std::vector<Lease> m_Leases;
|
2013-12-20 03:05:45 +00:00
|
|
|
Identity m_Identity;
|
2013-11-29 12:52:09 +00:00
|
|
|
IdentHash m_IdentHash;
|
2013-11-24 23:10:27 +00:00
|
|
|
uint8_t m_EncryptionKey[256];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|