summaryrefslogtreecommitdiff
path: root/tools/list_protos_in_cap.sh
AgeCommit message (Collapse)AuthorFilesLines
2015-03-25indexcap.py: fix tmpdir handling, python 3 compatPeter Wu1-10/+10
Add Python 3 compatibility to indexcap.py and only create a tmpdir for actions that need it. Only remove tmpdir for the compare action and try to remove the temp dir even if an exception occurs. In list_protos_in_cap.sh, rename BIN_DIR to WS_BIN_PATH (matching test/config.sh) and allow it to be overridden from the environment. Tested with Python 2.6.6, 2.7.9, 3.2.6, 3.4.3 as follows (with tshark built using cmake and '-b /tmp/wsbuild/run'): tools/indexcap.py out pop-ssl.pcapng; tools/indexcap.py out pop-ssl.pcapng --list-all-proto; tools/indexcap.py out pop-ssl.pcapng --list-all-files; tools/indexcap.py out pop-ssl.pcapng --list-all-proto-files=ssl; rm out; Python 2.5.6 does not work (there is no multiprocessing module). The dict output in Python 3.4.3 is different (has the hash function changed?) Change-Id: I592d8c4458a20d5088d815c6dd1cf90c9d3df9d3 Reviewed-on: https://code.wireshark.org/review/7792 Reviewed-by: Jeff Morriss <jeff.morriss.ws@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-02-14Remove $Id$ and other Subversion leftovers from the tools.Jeff Morriss1-2/+0
There are a few things in here which could still use attention. Don't regenerate anything now. Change-Id: I283c224d3523212144707fca3d6265916cb11792 Reviewed-on: https://code.wireshark.org/review/205 Reviewed-by: Jeff Morriss <jeff.morriss.ws@gmail.com>
2012-07-31Add comments to point out that these 2 scripts do the same thing.Jeff Morriss1-0/+2
svn path=/trunk/; revision=44175
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2012-05-01Add copyright notices. Fix SVN properties on svnadd.Jeff Morriss1-3/+23
svn path=/trunk/; revision=42375
2011-04-05foo="\windows\style\pathname"; printf "$foo" isn't going to work too well ↵Bill Meier1-1/+1
in the general case ... svn path=/trunk/; revision=36479
2011-04-051. Remove \r from tshark output so output OK on Windows cygwin bash.Bill Meier1-4/+16
2. Error messsages to stderr. 3. Check capinfos return value to verify that file is a valid capture file. svn path=/trunk/; revision=36478
2011-04-05Set BIN_DIR to . by default. Use tr to replace colons with newlines.Jeff Morriss1-2/+2
svn path=/trunk/; revision=36467
2011-04-04Based on idea from Bill Meier:Jeff Morriss1-0/+76
A little script to extract the protocols used in given capture files. (Just so I don't have to remember how to do it again.) svn path=/trunk/; revision=36462