mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 21:37:17 +01:00
GetIdentHash for LocalDestination
This commit is contained in:
parent
d7a584f48f
commit
ee08d6687f
|
@ -118,7 +118,8 @@ namespace data
|
|||
{
|
||||
public:
|
||||
|
||||
virtual void UpdateLeaseSet () = 0; // LeaseSet must be update
|
||||
virtual const IdentHash& GetIdentHash () const = 0;
|
||||
virtual void UpdateLeaseSet () = 0; // LeaseSet must be updated
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
#include <inttypes.h>
|
||||
#include <cryptopp/dsa.h>
|
||||
#include <cryptopp/osrng.h>
|
||||
#include "Identity.h"
|
||||
#include "RouterInfo.h"
|
||||
|
||||
namespace i2p
|
||||
|
@ -11,7 +12,7 @@ namespace i2p
|
|||
const char ROUTER_INFO[] = "router.info";
|
||||
const char ROUTER_KEYS[] = "router.keys";
|
||||
|
||||
class RouterContext
|
||||
class RouterContext: public i2p::data::LocalDestination
|
||||
{
|
||||
public:
|
||||
|
||||
|
@ -28,6 +29,10 @@ namespace i2p
|
|||
void OverrideNTCPAddress (const char * host, int port); // temporary
|
||||
void UpdateAddress (const char * host); // called from SSU
|
||||
|
||||
// implements LocalDestination
|
||||
void UpdateLeaseSet () {};
|
||||
const i2p::data::IdentHash& GetIdentHash () const { return m_RouterInfo.GetIdentHash (); };
|
||||
|
||||
private:
|
||||
|
||||
void CreateNewRouter ();
|
||||
|
|
|
@ -138,6 +138,7 @@ namespace stream
|
|||
|
||||
// implements LocalDestination
|
||||
void UpdateLeaseSet ();
|
||||
const i2p::data::IdentHash& GetIdentHash () const { return m_IdentHash; };
|
||||
|
||||
private:
|
||||
|
||||
|
|
Loading…
Reference in a new issue