aboutsummaryrefslogtreecommitdiffstats
path: root/tools/pkt-from-core.py
AgeCommit message (Collapse)AuthorFilesLines
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