aboutsummaryrefslogtreecommitdiffstats
path: root/tshark.c
AgeCommit message (Expand)AuthorFilesLines
2010-03-04"capture-pcap-util.h" include <pcap.h>, and <pcap.h>, for better orGuy Harris1-1/+0
2010-01-29Fix various gcc -Wshadow warnings.Bill Meier1-5/+5
2009-10-06Invert check for getopt: NEED_GETOPT_H -> HAVE_GETOPT_HStig Bjørlykke1-3/+4
2009-09-26Free capture filename on shutdownKovarththanan Rajaratnam1-1/+2
2009-09-26(Cosmetic) Reorder so that the failure message output handler appear in succe...Kovarththanan Rajaratnam1-105/+105
2009-09-22Remove unused 'offset' parameterKovarththanan Rajaratnam1-2/+2
2009-09-22Add initial support for "two pass analysis" in tshark. This allows tshark to ...Kovarththanan Rajaratnam1-25/+277
2009-09-22Rename init_cap_file() to cap_file_init()Kovarththanan Rajaratnam1-1/+1
2009-09-22Always initialise fdata even when we don't dissect (we access some of fdatas ...Kovarththanan Rajaratnam1-2/+2
2009-09-22Simply some logic inside process_packet()Kovarththanan Rajaratnam1-14/+8
2009-09-22Make frame_data_set_after_dissect() callers do the necessary checks insteadKovarththanan Rajaratnam1-2/+0
2009-09-22Refactor frame_data_init() into frame_data_set_before_dissect() and frame_dat...Kovarththanan Rajaratnam1-6/+8
2009-09-21Move frame_data_init() declaration to frame_data.hKovarththanan Rajaratnam1-9/+2
2009-09-20Fix return type for frame_data_init()Kovarththanan Rajaratnam1-1/+1
2009-09-20Introduce frame_data_cleanup() and start using itKovarththanan Rajaratnam1-9/+1
2009-09-20Introduce frame_data_init() and get rid of fill_in_fdata() in tshark.cKovarththanan Rajaratnam1-70/+13
2009-09-20Make cf_mark_frame() an empty stub in tshark.c. We only need it to satisfy a ...Kovarththanan Rajaratnam1-10/+2
2009-09-20Remove unused cf_unmark_frame() functionKovarththanan Rajaratnam1-15/+0
2009-09-20Move verbose banner output to show_version() and tighten scope of some variablesKovarththanan Rajaratnam1-21/+29
2009-09-08Add an option to col_fill_in() to allow us to disable column expression proce...Kovarththanan Rajaratnam1-1/+1
2009-09-08Make tshark and rawshark use build_column_format_array() instead of duplicati...Kovarththanan Rajaratnam1-42/+2
2009-09-07Store the packet encapsulation type as gint8. Saves 3 bytes per packetKovarththanan Rajaratnam1-1/+3
2009-09-06Split a bunch of init routines into init() and cleanup(). This allows us to f...Kovarththanan Rajaratnam1-3/+7
2009-08-13Introduce epan_dissect_init()/epan_dissect_cleanup(). These are used to initi...Kovarththanan Rajaratnam1-11/+13
2009-08-08Note that the new behavior matches what Wireshark does.Guy Harris1-1/+1
2009-08-07tshark: console_log_level preference now controls which log msgs are sent to ...Bill Meier1-6/+41
2009-07-27From Kovarththanan Rajaratnam:Anders Broman1-1/+1
2009-07-23From Kovarththanan Rajaratnam:Anders Broman1-0/+7
2009-07-08Clarify that "-w" specifies a *pcap-format* file to be written to.Guy Harris1-1/+2
2009-06-05Have tap listeners specify whether the "packet" routine requiresGuy Harris1-11/+40
2009-03-22Change the signature of init_progfile_dir() so the casting of theGuy Harris1-1/+1
2009-03-22In Solaris, the second argument to dladdr() is just a void *, not aGuy Harris1-2/+1
2009-03-22Attempt to use dladdr() to get the pathname of the executable image ifGuy Harris1-1/+2
2009-03-15From Jakub Zawadzki:Stig Bjørlykke1-2/+1
2009-02-15For tshark -b -S -w: close files after reading them; fixes bug #3172;Bill Meier1-7/+10
2009-02-15Add a routine to report write errors to the list of failure-reportingGuy Harris1-4/+16
2009-02-07#include <epan/conversation.h> not req'd ...Bill Meier1-1/+0
2008-10-03add a -K command line option to provide the name of the kerberos keytab Ronnie Sahlberg1-1/+7
2008-08-26#include <emem.h> not req'dBill Meier1-1/+0
2008-08-19The packet counts and drop counts reported by libpcap are unsigned.Guy Harris1-12/+12
2008-06-30Move privileges.c and unicode-utils.c from epan to wsutil (so things likeJeff Morriss1-1/+1
2008-06-23Rename capture_opts to global_capture_opts - that's what it's called inGuy Harris1-37/+37
2008-05-30Free up the err_info string returned by wtap_read().Guy Harris1-0/+2
2008-05-22Move the file utility functions from wiretap to libwsutil so thatJeff Morriss1-2/+1
2008-05-06Removed an unused break.Stig Bjørlykke1-1/+0
2008-04-30Get rid of extra blank lines at the end of the file.Guy Harris1-2/+0
2008-04-30Use report_failure() to report failures in capture_sync.c; that will doGuy Harris1-23/+1
2008-04-03http://www.wireshark.org/lists/wireshark-dev/200803/msg00308.htmlLuis Ontanon1-0/+2
2008-03-21Make tshark and rawshark behave similar to wireshark when "frame.time_delta_d...Sake Blok1-4/+8
2008-03-17Allow tshark to print custom columns.Stig Bjørlykke1-1/+8