mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
use shared pointers
This commit is contained in:
@@ -148,9 +148,9 @@ namespace client
|
||||
/** ident hash of remote destination */
|
||||
const i2p::data::IdentHash RemoteIdent;
|
||||
/** ident hash of IBGW in use currently in this session or nullptr if none is set */
|
||||
const i2p::data::IdentHash * CurrentIBGW;
|
||||
std::shared_ptr<const i2p::data::IdentHash> CurrentIBGW;
|
||||
/** ident hash of OBEP in use for this session or nullptr if none is set */
|
||||
const i2p::data::IdentHash * CurrentOBEP;
|
||||
std::shared_ptr<const i2p::data::IdentHash> CurrentOBEP;
|
||||
/** i2p router's udp endpoint */
|
||||
const boost::asio::ip::udp::endpoint LocalEndpoint;
|
||||
/** client's udp endpoint */
|
||||
|
||||
Reference in New Issue
Block a user