Skip to content
Snippets Groups Projects
Commit e1ac30c2 authored by Roger Dingledine's avatar Roger Dingledine
Browse files

stop calling assert_connection_ok(conn, time(NULL)) on every single

conn on every single loop.


svn:r3229
parent 288f2ed5
No related branches found
No related tags found
No related merge requests found
......@@ -338,10 +338,10 @@ static void conn_close_if_marked(int i) {
int retval;
conn = connection_array[i];
assert_connection_ok(conn, time(NULL));
assert_all_pending_dns_resolves_ok();
if (!conn->marked_for_close)
return; /* nothing to see here, move along */
assert_connection_ok(conn, time(NULL));
assert_all_pending_dns_resolves_ok();
log_fn(LOG_INFO,"Cleaning up connection (fd %d).",conn->s);
if (conn->s >= 0 && connection_wants_to_flush(conn)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment