aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/service_response_time_table.c
AgeCommit message (Collapse)AuthorFilesLines
2003-10-10Add a Find Next/Previous menu option to the ServiceResponseTimeStatistics dialogRonnie Sahlberg1-4/+27
svn path=/trunk/; revision=8658
2003-09-05Add a popup to the ServicveResponseTime tables where the user can selectRonnie Sahlberg1-2/+176
Prepare/Match/FindFrame similar to chat the ConversationList has. Only enabled for SMB and ONC-RPC at this point svn path=/trunk/; revision=8391
2003-09-03fix to various stats tables.Ronnie Sahlberg1-5/+4
The code used to rely on min_time==0 to determine whether this was the first packet or not and whereby we had to initialize min_time to the current value. This obviously does not work for capture files with poor timestamp resolution where the response time is actually, according to the capture file, 0 and we got all sorts of weird effects like average response time being less than the minimum response time. note, the bug only affected the minimum response time in the tables and not max or average response time. it would "miss" tose minimum response times that were ==0 and display the minumin response time in the capture that were >0 svn path=/trunk/; revision=8358
2003-06-22From Lars Roland: Fix the service response time functions to work with GTK2.Gerald Combs1-9/+11
svn path=/trunk/; revision=7911
2003-06-21Cosmetic bug.Ronnie Sahlberg1-4/+4
When creating a new CList to display SRT stats, make the DECEND arrow for the second column be displayed since this is how the table will be sorted by default svn path=/trunk/; revision=7908
2003-06-21Make the default sorting for the list be column 2 in descending order so weRonnie Sahlberg1-9/+12
get the rocedures with the most number of calls at the top. Fix a bug added in previous checkin. When the table can be sorted in different ways than just the procedure number sorted in ascending order, the row for a specific procedure may change everytime we drawi/sort the table. Add code to keep track of which row a procedure is currently positioned at in the list so that we statistics are added to the correct entry. svn path=/trunk/; revision=7906
2003-06-21Update the ServiceResponseTime helper routines so that the columnsRonnie Sahlberg1-4/+141
can be sorted. "borrowed" lots of code for this from gtkclist.c Columns 0,1 sort in ascending order by default Columns 2-5 sort in ascending order by default svn path=/trunk/; revision=7905
2003-06-21Break out the code for the ahndling of the Service Response Time (formerly ↵Ronnie Sahlberg1-0/+234
known as RoundTripTime) table and change the table into a scrollable CList. As a first conversion to use the helper routines, convert DCERPC SRT statistics to use the new interface. This prevents some interfaces (SAMR/LSA) that contains a huge number of procedures from creating a huge table that does not fir on the screen. Later changes to the helpers may be to make the different columns sortable or to hide those procedures that has not been seen in the capture. svn path=/trunk/; revision=7903