aboutsummaryrefslogtreecommitdiffstats
path: root/reordercap.c
AgeCommit message (Collapse)AuthorFilesLines
2012-10-17Fill some phdr values also when doing random readJakub Zawadzki1-2/+0
svn path=/trunk/; revision=45619
2012-10-16Add wtap_pseudo_header union to wtap_pkthdr structure.Jakub Zawadzki1-13/+7
Use pkthdr instead of pseudo_header as argument for dissecting. svn path=/trunk/; revision=45601
2012-10-04This is basically a rewrite from Jakub Zawadzki.Martin Mathieson1-217/+91
Rather than store the FrameRecord entries in a sorted linked list, instead use an unsorted GPtrArray, then sort it all at once. Also, there is no longer the option to limit the amount of sorting (and memory used), but a new option means we can avoid writing the output file altogether if the input file is found already to be in order. svn path=/trunk/; revision=45313
2012-10-03Add a command-line option to control how large the reordering list canMartin Mathieson1-9/+55
become. The default is now 0 (infinite). svn path=/trunk/; revision=45293
2012-09-26Fix some signed/unsigned mismatches caught by cppcheck.Evan Huus1-3/+3
svn path=/trunk/; revision=45145
2012-09-24Fix count of out-of-order frames reported at end of run.Martin Mathieson1-2/+8
svn path=/trunk/; revision=45089
2012-09-24Fix for bug 7746 (from Jim Young)Martin Mathieson1-6/+5
Use G_GINT64_MODIFIER when REORDER_DEBUG is defined. svn path=/trunk/; revision=45088
2012-09-20Turn off debug.Martin Mathieson1-1/+1
svn path=/trunk/; revision=45024
2012-09-20Add a new console wiretap program to reorder the frames within a captureMartin Mathieson1-0/+353
file. This version has been tested with pcap and IxCatapult files. Haven't got config/makefile changes quite right yet, will commit later. svn path=/trunk/; revision=45023