mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
837 B
47 lines
837 B
#ifndef LEASE_SET_H__ |
|
#define LEASE_SET_H__ |
|
|
|
#include <inttypes.h> |
|
#include <string.h> |
|
#include <list> |
|
#include "Identity.h" |
|
|
|
namespace i2p |
|
{ |
|
namespace data |
|
{ |
|
|
|
#pragma pack(1) |
|
|
|
struct Lease |
|
{ |
|
uint8_t tunnelGateway[32]; |
|
uint32_t tunnelID; |
|
uint64_t endDate; |
|
}; |
|
|
|
#pragma pack() |
|
|
|
class LeaseSet: public RoutingDestination |
|
{ |
|
public: |
|
|
|
LeaseSet (const uint8_t * buf, int len); |
|
|
|
// implements RoutingDestination |
|
const Identity& GetIdentity () const { return m_Identity; }; |
|
const IdentHash& GetIdentHash () const { return m_IdentHash; }; |
|
const uint8_t * GetEncryptionPublicKey () const { return m_EncryptionKey; }; |
|
bool IsDestination () const { return true; }; |
|
|
|
private: |
|
|
|
std::list<Lease> m_Leases; |
|
Identity m_Identity; |
|
IdentHash m_IdentHash; |
|
uint8_t m_EncryptionKey[256]; |
|
}; |
|
} |
|
} |
|
|
|
#endif
|
|
|