mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-27 11:17:49 +02:00
Unused parameter warnings removal
This commit is contained in:
parent
404715e02d
commit
5350078543
16 changed files with 65 additions and 61 deletions
|
@ -439,7 +439,7 @@ namespace client
|
|||
}
|
||||
|
||||
void I2PServerTunnel::HandleResolve (const boost::system::error_code& ecode, boost::asio::ip::tcp::resolver::iterator it,
|
||||
std::shared_ptr<boost::asio::ip::tcp::resolver> resolver)
|
||||
std::shared_ptr<boost::asio::ip::tcp::resolver> /*resolver*/)
|
||||
{
|
||||
if (!ecode)
|
||||
{
|
||||
|
@ -730,7 +730,8 @@ namespace client
|
|||
m_Session = new UDPSession(m_LocalEndpoint, m_LocalDest, ep, *m_RemoteIdent, LocalPort, RemotePort);
|
||||
}
|
||||
|
||||
void I2PUDPClientTunnel::HandleRecvFromI2P(const i2p::data::IdentityEx& from, uint16_t fromPort, uint16_t toPort, const uint8_t * buf, size_t len)
|
||||
void I2PUDPClientTunnel::HandleRecvFromI2P(const i2p::data::IdentityEx& from, uint16_t /*fromPort*/,
|
||||
uint16_t /*toPort*/, const uint8_t * buf, size_t len)
|
||||
{
|
||||
if(m_RemoteIdent && from.GetIdentHash() == *m_RemoteIdent)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue