2013-11-25 00:10:27 +01:00
|
|
|
#ifndef LEASE_SET_H__
|
|
|
|
#define LEASE_SET_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
2013-11-29 13:52:09 +01:00
|
|
|
#include <string.h>
|
2014-01-02 00:19:03 +01:00
|
|
|
#include <vector>
|
2013-12-20 04:05:45 +01:00
|
|
|
#include "Identity.h"
|
2013-11-25 00:10:27 +01:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
2014-07-29 19:44:54 +02:00
|
|
|
|
|
|
|
namespace tunnel
|
|
|
|
{
|
|
|
|
class TunnelPool;
|
|
|
|
}
|
|
|
|
|
2013-11-25 00:10:27 +01:00
|
|
|
namespace data
|
2013-11-29 13:52:09 +01:00
|
|
|
{
|
2013-11-25 00:10:27 +01:00
|
|
|
struct Lease
|
|
|
|
{
|
2015-03-23 17:55:42 +01:00
|
|
|
IdentHash tunnelGateway;
|
2013-11-25 00:10:27 +01:00
|
|
|
uint32_t tunnelID;
|
|
|
|
uint64_t endDate;
|
2014-02-04 03:57:53 +01:00
|
|
|
|
|
|
|
bool operator< (const Lease& other) const
|
|
|
|
{
|
|
|
|
if (endDate != other.endDate)
|
|
|
|
return endDate > other.endDate;
|
|
|
|
else
|
|
|
|
return tunnelID < other.tunnelID;
|
|
|
|
}
|
2013-11-25 00:10:27 +01:00
|
|
|
};
|
|
|
|
|
2014-12-14 02:54:18 +01:00
|
|
|
const int MAX_LS_BUFFER_SIZE = 3072;
|
2013-11-25 00:10:27 +01:00
|
|
|
class LeaseSet: public RoutingDestination
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2015-04-08 15:39:02 +02:00
|
|
|
LeaseSet (const uint8_t * buf, size_t len);
|
2015-12-16 20:52:48 +01:00
|
|
|
LeaseSet (std::shared_ptr<const i2p::tunnel::TunnelPool> pool);
|
2015-04-08 15:39:02 +02:00
|
|
|
~LeaseSet () { delete[] m_Buffer; };
|
|
|
|
void Update (const uint8_t * buf, size_t len);
|
2015-11-03 15:15:49 +01:00
|
|
|
std::shared_ptr<const IdentityEx> GetIdentity () const { return m_Identity; };
|
2014-10-03 21:08:41 +02:00
|
|
|
|
2014-07-29 20:31:55 +02:00
|
|
|
const uint8_t * GetBuffer () const { return m_Buffer; };
|
|
|
|
size_t GetBufferLen () const { return m_BufferLen; };
|
2015-04-08 16:34:16 +02:00
|
|
|
bool IsValid () const { return m_IsValid; };
|
2014-07-29 20:31:55 +02:00
|
|
|
|
2013-11-25 00:10:27 +01:00
|
|
|
// implements RoutingDestination
|
2015-11-03 15:15:49 +01:00
|
|
|
const IdentHash& GetIdentHash () const { return m_Identity->GetIdentHash (); };
|
2014-01-02 00:19:03 +01:00
|
|
|
const std::vector<Lease>& GetLeases () const { return m_Leases; };
|
2015-03-26 15:30:29 +01:00
|
|
|
const std::vector<Lease> GetNonExpiredLeases (bool withThreshold = true) const;
|
2014-01-15 02:57:33 +01:00
|
|
|
bool HasExpiredLeases () const;
|
|
|
|
bool HasNonExpiredLeases () const;
|
2013-11-25 00:10:27 +01:00
|
|
|
const uint8_t * GetEncryptionPublicKey () const { return m_EncryptionKey; };
|
2013-11-27 02:59:25 +01:00
|
|
|
bool IsDestination () const { return true; };
|
2014-07-22 02:14:11 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2015-11-03 15:15:49 +01:00
|
|
|
void ReadFromBuffer (bool readIdentity = true);
|
2013-11-25 00:10:27 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2015-04-08 16:34:16 +02:00
|
|
|
bool m_IsValid;
|
2014-01-02 00:19:03 +01:00
|
|
|
std::vector<Lease> m_Leases;
|
2015-11-03 15:15:49 +01:00
|
|
|
std::shared_ptr<const IdentityEx> m_Identity;
|
2013-11-25 00:10:27 +01:00
|
|
|
uint8_t m_EncryptionKey[256];
|
2015-04-08 15:39:02 +02:00
|
|
|
uint8_t * m_Buffer;
|
2014-07-29 19:44:54 +02:00
|
|
|
size_t m_BufferLen;
|
2013-11-25 00:10:27 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|