TCPServer: don't spam logs with 127.0.0.1 bans

pull/243/head
SChernykh 2023-03-17 16:59:01 +01:00
parent 6baf5247cb
commit de7bdba95f
1 changed files with 4 additions and 0 deletions

View File

@ -1164,6 +1164,10 @@ void TCPServer<READ_BUF_SIZE, WRITE_BUF_SIZE>::Client::close()
template<size_t READ_BUF_SIZE, size_t WRITE_BUF_SIZE>
void TCPServer<READ_BUF_SIZE, WRITE_BUF_SIZE>::Client::ban(uint64_t seconds)
{
if (m_addr.is_localhost()) {
return;
}
if (m_owner) {
LOGWARN(3, "peer " << static_cast<char*>(m_addrString) << " banned for " << seconds << " seconds");
m_owner->ban(m_addr, seconds);