-
Notifications
You must be signed in to change notification settings - Fork 333
/
statistics.c
53 lines (46 loc) · 1.14 KB
/
statistics.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
* $smu-mark$
* $name: statistics.c$
* $author: Salvatore Sanfilippo <[email protected]>$
* $copyright: Copyright (C) 1999 by Salvatore Sanfilippo$
* $license: This software is under GPL version 2 of license$
* $date: Fri Nov 5 11:55:50 MET 1999$
* $rev: 8$
*/
/* $Id: statistics.c,v 1.3 2004/04/09 23:38:56 antirez Exp $ */
#include <stdlib.h>
#include <stdio.h>
#include "hping2.h"
#include "globals.h"
void print_statistics(int signal_id)
{
unsigned int lossrate;
close_pcap();
if (recv_pkt > 0)
lossrate = 100 - ((recv_pkt*100)/sent_pkt);
else
if (!sent_pkt)
lossrate = 0;
else
lossrate = 100;
fprintf(stderr, "\n--- %s hping statistic ---\n", targetname);
fprintf(stderr, "%d packets tramitted, %d packets received, "
"%d%% packet loss\n", sent_pkt, recv_pkt, lossrate);
if (out_of_sequence_pkt)
fprintf(stderr, "%d out of sequence packets received\n",
out_of_sequence_pkt);
fprintf(stderr, "round-trip min/avg/max = %.1f/%.1f/%.1f ms\n",
rtt_min, rtt_avg, rtt_max);
/* manage exit code */
if (opt_tcpexitcode)
{
exit(tcp_exitcode);
}
else
{
if (recv_pkt)
exit(0);
else
exit(1);
}
};