2013-11-25 03:10:27 +04:00
|
|
|
#ifndef LEASE_SET_H__
|
|
|
|
#define LEASE_SET_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
2013-11-29 16:52:09 +04:00
|
|
|
#include <string.h>
|
2014-01-02 03:19:03 +04:00
|
|
|
#include <vector>
|
2013-12-20 07:05:45 +04:00
|
|
|
#include "Identity.h"
|
2013-11-25 03:10:27 +04:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
2014-07-29 21:44:54 +04:00
|
|
|
|
|
|
|
namespace tunnel
|
|
|
|
{
|
|
|
|
class TunnelPool;
|
|
|
|
}
|
|
|
|
|
2013-11-25 03:10:27 +04:00
|
|
|
namespace data
|
2013-11-29 16:52:09 +04:00
|
|
|
{
|
|
|
|
|
2013-11-25 03:10:27 +04:00
|
|
|
#pragma pack(1)
|
2013-12-20 06:19:44 +04:00
|
|
|
|
2013-11-25 03:10:27 +04:00
|
|
|
struct Lease
|
|
|
|
{
|
|
|
|
uint8_t tunnelGateway[32];
|
|
|
|
uint32_t tunnelID;
|
|
|
|
uint64_t endDate;
|
2014-02-04 06:57:53 +04:00
|
|
|
|
|
|
|
bool operator< (const Lease& other) const
|
|
|
|
{
|
|
|
|
if (endDate != other.endDate)
|
|
|
|
return endDate > other.endDate;
|
|
|
|
else
|
|
|
|
return tunnelID < other.tunnelID;
|
|
|
|
}
|
2013-11-25 03:10:27 +04:00
|
|
|
};
|
2013-12-20 06:19:44 +04:00
|
|
|
|
2013-11-25 03:10:27 +04:00
|
|
|
#pragma pack()
|
|
|
|
|
2014-07-29 21:44:54 +04:00
|
|
|
const int MAX_LS_BUFFER_SIZE = 2048;
|
2013-11-25 03:10:27 +04:00
|
|
|
class LeaseSet: public RoutingDestination
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2014-07-31 20:59:43 +04:00
|
|
|
LeaseSet (const uint8_t * buf, int len, bool unsolicited = false);
|
2014-01-13 07:31:26 +04:00
|
|
|
LeaseSet (const LeaseSet& ) = default;
|
2014-07-29 21:44:54 +04:00
|
|
|
LeaseSet (const i2p::tunnel::TunnelPool& pool);
|
2014-01-13 07:31:26 +04:00
|
|
|
LeaseSet& operator=(const LeaseSet& ) = default;
|
2014-07-22 04:14:11 +04:00
|
|
|
void Update (const uint8_t * buf, int len);
|
2014-01-13 07:31:26 +04:00
|
|
|
|
2014-07-29 22:31:55 +04:00
|
|
|
const uint8_t * GetBuffer () const { return m_Buffer; };
|
|
|
|
size_t GetBufferLen () const { return m_BufferLen; };
|
|
|
|
|
2014-07-31 20:59:43 +04:00
|
|
|
bool IsUnsolicited () const { return m_IsUnsolicited; };
|
|
|
|
void SetUnsolicited (bool unsolicited) { m_IsUnsolicited = unsolicited; };
|
|
|
|
|
2013-11-25 03:10:27 +04:00
|
|
|
// implements RoutingDestination
|
2014-08-22 05:57:24 +04:00
|
|
|
const Identity& GetIdentity () const { return m_Identity.GetStandardIdentity (); };
|
|
|
|
const IdentHash& GetIdentHash () const { return m_Identity.GetIdentHash (); };
|
2014-01-02 03:19:03 +04:00
|
|
|
const std::vector<Lease>& GetLeases () const { return m_Leases; };
|
2014-03-23 17:25:16 +04:00
|
|
|
const std::vector<Lease> GetNonExpiredLeases () const;
|
2014-01-15 05:57:33 +04:00
|
|
|
bool HasExpiredLeases () const;
|
|
|
|
bool HasNonExpiredLeases () const;
|
2013-11-25 03:10:27 +04:00
|
|
|
const uint8_t * GetEncryptionPublicKey () const { return m_EncryptionKey; };
|
2013-11-27 05:59:25 +04:00
|
|
|
bool IsDestination () const { return true; };
|
2014-07-22 04:14:11 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-07-29 21:44:54 +04:00
|
|
|
void ReadFromBuffer ();
|
2013-11-25 03:10:27 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-01-02 03:19:03 +04:00
|
|
|
std::vector<Lease> m_Leases;
|
2014-08-22 05:57:24 +04:00
|
|
|
IdentityEx m_Identity;
|
2013-11-25 03:10:27 +04:00
|
|
|
uint8_t m_EncryptionKey[256];
|
2014-07-29 21:44:54 +04:00
|
|
|
uint8_t m_Buffer[MAX_LS_BUFFER_SIZE];
|
|
|
|
size_t m_BufferLen;
|
2014-07-31 20:59:43 +04:00
|
|
|
bool m_IsUnsolicited;
|
2013-11-25 03:10:27 +04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|