mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
libi2pd: make Tunnel and TunnelConfig destructors virtual
This commit is contained in:
@@ -68,7 +68,7 @@ namespace tunnel
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
Tunnel (std::shared_ptr<const TunnelConfig> config);
|
Tunnel (std::shared_ptr<const TunnelConfig> config);
|
||||||
~Tunnel ();
|
virtual ~Tunnel ();
|
||||||
|
|
||||||
void Build (uint32_t replyMsgID, std::shared_ptr<OutboundTunnel> outboundTunnel = nullptr);
|
void Build (uint32_t replyMsgID, std::shared_ptr<OutboundTunnel> outboundTunnel = nullptr);
|
||||||
|
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ namespace tunnel
|
|||||||
m_LastHop->SetReplyHop (replyTunnelID, replyIdent);
|
m_LastHop->SetReplyHop (replyTunnelID, replyIdent);
|
||||||
}
|
}
|
||||||
|
|
||||||
~TunnelConfig ()
|
virtual ~TunnelConfig ()
|
||||||
{
|
{
|
||||||
TunnelHopConfig * hop = m_FirstHop;
|
TunnelHopConfig * hop = m_FirstHop;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user