aboutsummaryrefslogtreecommitdiffstats
path: root/tap-icmpstat.c
AgeCommit message (Collapse)AuthorFilesLines
2011-04-07Display frame numbers containing min & max SRT's. Other misc. display tweaks.Chris Maynard1-17/+19
svn path=/trunk/; revision=36508
2011-04-07Until the minimum glib version requirement is changed from 2.4 to at least 2.8,Chris Maynard1-3/+3
use g_try_malloc() instead of g_try_malloc0(). This should make the Solaris buildbot happy again. svn path=/trunk/; revision=36504
2011-04-06Fix Coverity 1181: REVERSE_INULL & improve code:Stephen Fisher1-2/+4
- Use g_try_malloc0() instead of g_malloc0() since the latter will fail and abort the program. Leave the NULL return check. - Don't dereference pointer before checking that it's valid. svn path=/trunk/; revision=36503
2011-04-06Add computation of median and change standard deviation calculation to "sample"Chris Maynard1-19/+65
standard deviation. Split statistics output onto 2 lines. svn path=/trunk/; revision=36501
2011-04-05Set the correct properties ...Bill Meier1-0/+0
svn path=/trunk/; revision=36484
2011-04-05Mark pinfo as unused with _U_ to avoid compiler warning.Chris Maynard1-1/+1
svn path=/trunk/; revision=36481
2011-04-05Add ICMP tap support, and add a tshark tap to measure such things as:Chris Maynard1-0/+269
* Number of ICMP echo requests, replies, lost replies and percent loss. * Min, Max, Average SRT (Service Response Time), and standard deviation. (This is my first tap, so hopefully I didn't miss something, but we'll see ...) TODO: Add a Wireshark tap. svn path=/trunk/; revision=36480