Skip to content

Commit

Permalink
status: found=n
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdavidgraham committed Jan 5, 2014
1 parent f210be9 commit 2bb84cf
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/main-status.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,14 +139,15 @@ status_print(
);
} else if (rate > 0) {
fprintf(stderr,
"rate:%6.2f-kpps, %5.2f%% done,%4u:%02u:%02u remaining, %llu-tcbs, rr=%.0f \r",
"rate:%6.2f-kpps, %5.2f%% done,%4u:%02u:%02u remaining, found=%llu \r",
x/1000.0,
percent_done,
(unsigned)(time_remaining/60/60),
(unsigned)(time_remaining/60)%60,
(unsigned)(time_remaining)%60,
global_tcb_count,
synack_rate
total_synacks
//global_tcb_count,
//synack_rate
);
}
fflush(stderr);
Expand Down

0 comments on commit 2bb84cf

Please sign in to comment.