TCP server: log IP addresses in more places

pull/11/head
SChernykh 2021-09-05 20:20:28 +02:00
parent f3ee444aed
commit 884d0f180a
2 changed files with 7 additions and 7 deletions

View File

@ -1121,7 +1121,7 @@ bool P2PServer::P2PClient::on_handshake_challenge(const uint8_t* buf)
memcpy(&peer_id, buf + CHALLENGE_SIZE, sizeof(uint64_t)); memcpy(&peer_id, buf + CHALLENGE_SIZE, sizeof(uint64_t));
if (peer_id == server->get_peerId()) { if (peer_id == server->get_peerId()) {
LOGWARN(5, "tried to connect to self"); LOGWARN(5, "tried to connect to self at " << static_cast<const char*>(m_addrString));
return false; return false;
} }

View File

@ -419,7 +419,7 @@ void TCPServer<READ_BUF_SIZE, WRITE_BUF_SIZE>::shutdown_tcp()
using namespace std::chrono; using namespace std::chrono;
const system_clock::time_point start_time = system_clock::now(); const system_clock::time_point start_time = system_clock::now();
uint32_t counter = 0; int64_t counter = 0;
uv_async_t asy; uv_async_t asy;
constexpr uint32_t timeout_seconds = 30; constexpr uint32_t timeout_seconds = 30;
@ -524,7 +524,7 @@ bool TCPServer<READ_BUF_SIZE, WRITE_BUF_SIZE>::send_internal(Client* client, Sen
MutexLock lock(client->m_writeBuffersLock); MutexLock lock(client->m_writeBuffersLock);
client->m_writeBuffers.push_back(buf); client->m_writeBuffers.push_back(buf);
} }
LOGWARN(1, "failed to start writing data to client connection, error " << uv_err_name(err)); LOGWARN(1, "failed to start writing data to client connection " << static_cast<const char*>(client->m_addrString) << ", error " << uv_err_name(err));
return false; return false;
} }
@ -800,14 +800,14 @@ void TCPServer<READ_BUF_SIZE, WRITE_BUF_SIZE>::Client::on_alloc(uv_handle_t* han
Client* pThis = static_cast<Client*>(handle->data); Client* pThis = static_cast<Client*>(handle->data);
if (pThis->m_readBufInUse) { if (pThis->m_readBufInUse) {
LOGWARN(4, "client: read buffer is already in use"); LOGWARN(4, "client " << static_cast<const char*>(pThis->m_addrString) << " read buffer is already in use");
buf->len = 0; buf->len = 0;
buf->base = nullptr; buf->base = nullptr;
return; return;
} }
if (pThis->m_numRead >= sizeof(pThis->m_readBuf)) { if (pThis->m_numRead >= sizeof(pThis->m_readBuf)) {
LOGWARN(4, "client: read buffer is full"); LOGWARN(4, "client " << static_cast<const char*>(pThis->m_addrString) << " read buffer is full");
buf->len = 0; buf->len = 0;
buf->base = nullptr; buf->base = nullptr;
return; return;
@ -833,7 +833,7 @@ void TCPServer<READ_BUF_SIZE, WRITE_BUF_SIZE>::Client::on_read(uv_stream_t* stre
} }
else if (nread < 0) { else if (nread < 0) {
if (nread != UV_EOF) { if (nread != UV_EOF) {
LOGWARN(5, "client: failed to read response, err = " << uv_err_name(static_cast<int>(nread))); LOGWARN(5, "client " << static_cast<const char*>(pThis->m_addrString) << " failed to read response, err = " << uv_err_name(static_cast<int>(nread)));
} }
pThis->close(); pThis->close();
} }
@ -851,7 +851,7 @@ void TCPServer<READ_BUF_SIZE, WRITE_BUF_SIZE>::Client::on_write(uv_write_t* req,
} }
if (status != 0) { if (status != 0) {
LOGWARN(5, "client: failed to write data to client connection, error " << uv_err_name(status)); LOGWARN(5, "client " << static_cast<const char*>(client->m_addrString) << " failed to write data to client connection, error " << uv_err_name(status));
client->close(); client->close();
} }
} }