diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-05-26 20:17:15 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-05-27 09:43:54 +0100 |
commit | dfd36bbebb6f6171763281cd2431f85901584259 (patch) | |
tree | 00b9f1b32fe1015ce68313dbd6d5f203111a89a7 /contrib/epee/include/net/abstract_tcp_server2.inl | |
parent | abstract_tcp_server2: timeout on RPC connections (diff) | |
download | monero-dfd36bbebb6f6171763281cd2431f85901584259.tar.xz |
http_protocol_handler: limit the number of starting newlines
Diffstat (limited to 'contrib/epee/include/net/abstract_tcp_server2.inl')
-rw-r--r-- | contrib/epee/include/net/abstract_tcp_server2.inl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/epee/include/net/abstract_tcp_server2.inl b/contrib/epee/include/net/abstract_tcp_server2.inl index 7bbee288d..91a94c21e 100644 --- a/contrib/epee/include/net/abstract_tcp_server2.inl +++ b/contrib/epee/include/net/abstract_tcp_server2.inl @@ -607,7 +607,7 @@ PRAGMA_WARNING_DISABLE_VS(4355) { if(ec == boost::asio::error::operation_aborted) return; - MDEBUG("Connection timeout, closing"); + MDEBUG(context << "connection timeout, closing"); self->close(); }); } |