aboutsummaryrefslogtreecommitdiffstats
path: root/tap-camelsrt.c
AgeCommit message (Collapse)AuthorFilesLines
2009-06-05Have tap listeners specify whether the "packet" routine requiresGuy Harris1-26/+9
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
2008-02-18Add $Id$Bill Meier1-0/+2
svn path=/trunk/; revision=24382
2008-02-03More rewrite of prohibited APIs (sprintf, strcpy, strcat).Stig Bjørlykke1-2/+1
svn path=/trunk/; revision=24258
2007-07-13next try to fix includesTomas Kukosa1-0/+1
svn path=/trunk/; revision=22297
2007-05-13Second step in introducing asn context to BER dissectors just like in PER.Anders Broman1-0/+1
svn path=/trunk/; revision=21753
2006-12-08Add the StatSRT flags to the header file, rather than declaring them inGuy Harris1-6/+0
all modules that use them. svn path=/trunk/; revision=20068
2006-10-04Got rid of some errors but 1 remains:Anders Broman1-3/+5
libui.lib(camel_srt.obj) : error LNK2001: unresolved external symbol _camelSRTt pe_naming wireshark.exe : fatal error LNK1120: 1 unresolved externals NMAKE : fatal error U1077: 'link' : return code '0x460' Stop. svn path=/trunk/; revision=19424
2006-10-03From Florent.Drouin@alcatel.fr:Anders Broman1-0/+276
Please find two new TAP for Camel Statistics. The first one updates counters related to camel operations. It is located in the GSM submenu. The second one , named Camel Service Response Time, gives the time ellapsed between a couple of camel specifics operations. (For example InitialDP/Continue or InitialDP GPRS/Continue GPRS). With Wireshark, you can have the Min/Max/Mean delay time for your traces files, and with Tshark, you have the additional information for percentile (1%,95% 99% etc ) To enable the use of the Camel statistics, you have 2 new parameters in the preferences, - SRT, enable the service Response Time calculation. - persistentSRT, keep the data in a context, even after the camel session has been closed. This is mandatory with Wireshark, to have a clean display of the stats. Only the new files checked in for now because of include problems. svn path=/trunk/; revision=19420