tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 84fe1c891bc77a2363a119f3c7dc834127bcacc7
parent fd3e0c154236c59c2972b549500675980bb02507
Author: cypherpunks <cypherpunks@torproject.org>
Date:   Thu, 12 Mar 2020 19:55:12 +0000

core/mainloop: remove noisy logging

Diffstat:
Msrc/core/mainloop/connection.c | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/src/core/mainloop/connection.c b/src/core/mainloop/connection.c @@ -3687,9 +3687,6 @@ connection_buf_read_from_socket(connection_t *conn, ssize_t *max_to_read, /* Do not allow inbuf to grow past INT_MAX - 1. */ const ssize_t maximum = INT_MAX - 1 - buf_datalen(conn->inbuf); if (at_most > maximum) { - log_debug(LD_NET, "%d: inbuf_datalen=%"TOR_PRIuSZ", adding %" - TOR_PRIdSZ" might overflow.", - (int)conn->s, buf_datalen(conn->inbuf), at_most); at_most = maximum; }