aboutsummaryrefslogtreecommitdiffstats
path: root/tools/pkt-from-core.py
AgeCommit message (Collapse)AuthorFilesLines
2015-11-20More spelling fixes found by lintianBalint Reczey1-1/+1
Change-Id: Id218dec9e5a721d6c63fd34962ffe50b6ab8dd56 Reviewed-on: https://code.wireshark.org/review/11946 Reviewed-by: Guy Harris <guy@alum.mit.edu> Reviewed-by: Diederik de Groot <dkgroot@talon.nl> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-02-14Remove $Id$ and other Subversion leftovers from the tools.Jeff Morriss1-3/+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>
2013-12-01Use 4-space (PEP 8) indentation. Add modelines.Gerald Combs1-364/+376
svn path=/trunk/; revision=53685
2013-09-18Missed one file from dfilter-test.pyGilbert Ramirez1-0/+19
Updated license in ancient tool. svn path=/trunk/; revision=52137
2006-06-06Ethereal -> WiresharkGerald Combs1-2/+2
svn path=/trunk/; revision=18374
2006-05-31Tethereal/tethereal -> TShark/tshark.Gerald Combs1-2/+2
svn path=/trunk/; revision=18268
2002-03-06Use the gdb "x" (examine memory) command instead of "print" to obtainGilbert Ramirez1-18/+39
the packet data. "print" will only show the first 200 members of an array, whereas "x" doesn't seem to have a limit. svn path=/trunk/; revision=4884
2002-03-06Add ability to pull packet from add_packet_to_packet_list() frame.Gilbert Ramirez1-16/+39
svn path=/trunk/; revision=4881
2002-02-21Add first attempt at creating a tool to take a [t]ethereal core fileGilbert Ramirez1-0/+415
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