more DHT fixes and simplifications
This commit is contained in:
@@ -1394,9 +1394,10 @@ int main(int argc, char* argv[])
|
||||
for (std::vector<dht_lookup>::iterator i = sess_stat.active_requests.begin()
|
||||
, end(sess_stat.active_requests.end()); i != end; ++i)
|
||||
{
|
||||
snprintf(str, sizeof(str), " %s in flight: %d [limit: %d] timeouts %d responses %d\n"
|
||||
snprintf(str, sizeof(str)
|
||||
, " %s in flight: %d [limit: %d] timeouts %d responses %d left %d\n"
|
||||
, i->type, i->outstanding_requests, i->branch_factor, i->timeouts
|
||||
, i->responses);
|
||||
, i->responses, i->nodes_left);
|
||||
out += str;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user