|
@@ -1360,11 +1360,11 @@ dumpstats(int severity)
|
|
|
if (stats_n_data_cells_packaged)
|
|
|
log(severity,LD_NET,"Average packaged cell fullness: %2.3f%%",
|
|
|
100*(U64_TO_DBL(stats_n_data_bytes_packaged) /
|
|
|
- (stats_n_data_cells_packaged*RELAY_PAYLOAD_SIZE)) );
|
|
|
+ U64_TO_DBL(stats_n_data_cells_packaged*RELAY_PAYLOAD_SIZE)) );
|
|
|
if (stats_n_data_cells_received)
|
|
|
log(severity,LD_NET,"Average delivered cell fullness: %2.3f%%",
|
|
|
100*(U64_TO_DBL(stats_n_data_bytes_received) /
|
|
|
- (stats_n_data_cells_received*RELAY_PAYLOAD_SIZE)) );
|
|
|
+ U64_TO_DBL(stats_n_data_cells_received*RELAY_PAYLOAD_SIZE)) );
|
|
|
|
|
|
if (now - time_of_process_start >= 0)
|
|
|
elapsed = now - time_of_process_start;
|