1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-31 09:04:14 +00:00

get rid of compiler warnings, add logging

This commit is contained in:
jeff 2015-09-30 09:18:30 -04:00
parent 569bd45f10
commit 2248d2ad82

View File

@ -924,8 +924,12 @@ namespace client
} }
void SAMBridge::HandleForwardedUDP(const boost::system::error_code& ecode, std::size_t bytes_transferrted) void SAMBridge::HandleForwardedUDP(const boost::system::error_code& ecode, std::size_t bytes_transferred)
{ {
if(!ecode)
{
LogPrint("Forwarded ", bytes_transferred, "B");
}
if(m_Forward) if(m_Forward)
{ {
delete [] m_Forward; delete [] m_Forward;