aboutsummaryrefslogtreecommitdiffstats
path: root/tap-comparestat.c
AgeCommit message (Collapse)AuthorFilesLines
2011-06-24Print the filter string, if one was specified, just like Wireshark does.Chris Maynard1-1/+1
svn path=/trunk/; revision=37780
2011-03-07Allow <interval> to be successfully sscanf'd no matter the locale for theChris Maynard1-2/+5
decimal symbol. Similar to the fix made to tap-iostat.c to resolve bug 2880. Motivated by the discussion started from this thread on the user list: http://www.wireshark.org/lists/wireshark-users/201103/msg00018.html svn path=/trunk/; revision=36160
2010-09-23Remove unnecessary include: register.hJeff Morriss1-15/+14
svn path=/trunk/; revision=34194
2010-07-20Updading opensuse 11.2 -> 11.3 updated gcc to 4.5.0, which createdJörg Mayer1-2/+2
a few warnings that needed fixing when compiling with -Werror. svn path=/trunk/; revision=33587
2009-09-27Fix a possible dereference of null pointer.Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=30176
2009-06-05Have tap listeners specify whether the "packet" routine requiresGuy Harris1-1/+1
a protocol tree; the column values. This includes stats-tree listeners. Have the routines to build the packet list, and to retap packets, honor those requirements. This means that cf_retap_packets() no longer needs an argument to specify whether to construct the column values or not, so get rid of that argument. This also means that there's no need for a tap to have a fake filter to ensure that the protocol tree will be built, so don't set up a fake "frame" filter. While we're at it, clean up some cases where "no filter" was represented as a null string rather than a null pointer. Have a routine to return an indication of the number of tap listeners with filters; use that rather than the global num_tap_filters. Clean up some indentation and some gboolean vs. gint items. svn path=/trunk/; revision=28645
2009-05-20From Vincenzo Condoleo via bug 2589:Gerald Combs1-0/+580
Add IP packet comparison statistics. svn path=/trunk/; revision=28426