aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile.am
AgeCommit message (Collapse)AuthorFilesLines
2005-07-10After doing "make maintainer-clean", "svn status --no-ignore | grep ^I"Jörg Mayer1-0/+4
returned quite a list of files. Add them to MAINTAINERCLEANFILES. Whitespace changes (replace multiple spaces by TABs, in a few cases this needed to be done at the beginning of Makefile lines. svn path=/trunk/; revision=14891
2005-05-13Forgott the lex.py fileAnders Broman1-0/+1
svn path=/trunk/; revision=14360
2005-05-13Add the asn2eth related files to extra-dist (I hope this is the right thing ↵Anders Broman1-1/+3
to do to get them into the SVN tarballs). svn path=/trunk/; revision=14359
2005-04-18Add fuzz-test.sh to the distribution.Gerald Combs1-0/+1
svn path=/trunk/; revision=14126
2004-10-29Add netscreen2dump.py, to convert netscreen packet-trace hex dumpsGilbert Ramirez1-0/+1
to hex dumps that can be read by text2pcap. svn path=/trunk/; revision=12435
2004-10-27Add unix2dos.pl to the list of files to be distributed.Guy Harris1-0/+1
svn path=/trunk/; revision=12409
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2004-06-04As Mark Corley pointed out, win32-setup.sh should be part of the distribution.Gerald Combs1-7/+8
svn path=/trunk/; revision=11102
2003-12-29Give it an RCS ID and copyright notice.Guy Harris1-0/+23
svn path=/trunk/; revision=9481
2003-12-29Add a missing backslash for the EXTRA_DIST files.Gilbert Ramirez1-1/+1
svn path=/trunk/; revision=9477
2003-12-06Add the ability to print packet dissections in PDML (an XML-based format)Gilbert Ramirez1-0/+3
to tethereal. It could be added to Ethereal, but the GUI changes to allow the user to select PDML as a print format have not been added. Provide a python module (EtherealXML.py) to help parse PDML. Provide a sample app (msnchat) which uses tethereal and EtherealXML.py to reconstruct MSN Chat sessions from packet capture files. It produces a nice HTML report of the chat sessions. Document tethereal's PDML and EtherealXML.py usage in doc/README.xml-output Update tethereal's manpage to reflect the new [-T pdml|ps|text] option svn path=/trunk/; revision=9180
2002-02-21Add first attempt at creating a tool to take a [t]ethereal core fileGilbert Ramirez1-1/+2
and using gdb, extract the packet that was being dissected when the core file was created. It works in simple cases; it will probably fail in many other cases. Right now it only creates libpcap files, and uses text2pcap to do so. svn path=/trunk/; revision=4767
2001-02-23Add a little script which takes the output of "cvs diff", which isGilbert Ramirez1-1/+2
a flattened recursive diff, and unflattens it, so that it can be applied with "patch -p0". This has tested only against the output of "cvs diff -u". Usage: cvs diff -u | cvsdiff-fix.py > file.diff svn path=/trunk/; revision=3071
2001-02-02Add Makefile.nmake files for new subdirs.Gilbert Ramirez1-0/+3
Add them to EXTRA_DIST in corresponding Makefile.am's so that they get packaged with the distribution. svn path=/trunk/; revision=2979
2001-02-01Create a more modular type system for the FT_* types. Put themGilbert Ramirez1-0/+1
into epan/ftypes. Re-write display filter routines using Lemon parser instead of yacc. Besides using a different tool, the new grammar is much simpler, while the display filter engine itself is more powerful and more easily extended. Add dftest executable, to test display filter "bytecode" generation. Add option to "configure" to build dftest or randpkt, both of which are not built by default. Implement Ed Warnicke's ideas about dranges in the new display filter and ftype code. Remove type FT_TEXT_ONLY in favor of FT_NONE, and have protocols registered as FT_PROTOCOL. Thus, FT_NONE is used only for simple labels in the proto tree, while FT_PROTOCOL is used for protocols. This was necessary for being able to make byte slices (ranges) out of protocols, like "frame[0:3]" Win32 Makefile.nmake's will be added tonight. svn path=/trunk/; revision=2967