1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-15 09:39:58 +00:00
i2pd/LeaseSet.h

79 lines
1.7 KiB
C
Raw Permalink Normal View History

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