mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
rename SendTunnelDataMsg to SendTunnelDataMsgs for multiple messages
This commit is contained in:
parent
dc6499aa98
commit
922e5915b1
7 changed files with 12 additions and 12 deletions
|
@ -139,7 +139,7 @@ namespace tunnel
|
|||
Tunnel (config), m_Gateway (this), m_EndpointIdentHash (config->GetLastIdentHash ()) {};
|
||||
|
||||
void SendTunnelDataMsg (const uint8_t * gwHash, uint32_t gwTunnel, std::shared_ptr<i2p::I2NPMessage> msg);
|
||||
virtual void SendTunnelDataMsg (const std::vector<TunnelMessageBlock>& msgs); // multiple messages
|
||||
virtual void SendTunnelDataMsgs (const std::vector<TunnelMessageBlock>& msgs); // multiple messages
|
||||
const i2p::data::IdentHash& GetEndpointIdentHash () const { return m_EndpointIdentHash; };
|
||||
virtual size_t GetNumSentBytes () const { return m_Gateway.GetNumSentBytes (); };
|
||||
|
||||
|
@ -190,7 +190,7 @@ namespace tunnel
|
|||
public:
|
||||
|
||||
ZeroHopsOutboundTunnel ();
|
||||
void SendTunnelDataMsg (const std::vector<TunnelMessageBlock>& msgs) override;
|
||||
void SendTunnelDataMsgs (const std::vector<TunnelMessageBlock>& msgs) override;
|
||||
size_t GetNumSentBytes () const override { return m_NumSentBytes; };
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue