mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 21:37:17 +01:00
handle b33 addresses in I2P tunnels
This commit is contained in:
parent
6f4f0f03d2
commit
8774a8fbc2
|
@ -13,6 +13,7 @@
|
||||||
#include "Datagram.h"
|
#include "Datagram.h"
|
||||||
#include "Streaming.h"
|
#include "Streaming.h"
|
||||||
#include "I2PService.h"
|
#include "I2PService.h"
|
||||||
|
#include "AddressBook.h"
|
||||||
|
|
||||||
namespace i2p
|
namespace i2p
|
||||||
{
|
{
|
||||||
|
@ -129,11 +130,11 @@ namespace client
|
||||||
const char* GetName() { return m_Name.c_str (); }
|
const char* GetName() { return m_Name.c_str (); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
const i2p::data::IdentHash * GetIdentHash ();
|
std::shared_ptr<const Address> GetAddress ();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::string m_Name, m_Destination;
|
std::string m_Name, m_Destination;
|
||||||
const i2p::data::IdentHash * m_DestinationIdentHash;
|
std::shared_ptr<const Address> m_Address;
|
||||||
int m_DestinationPort;
|
int m_DestinationPort;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue