aboutsummaryrefslogtreecommitdiffstats
path: root/tshark.c
AgeCommit message (Expand)AuthorFilesLines
2010-06-01capture() can, in some cases, return FALSE when the capture succeeds;Guy Harris1-3/+10
2010-05-28Move some code (including the optional objects) into libwsutilJeff Morriss1-2/+2
2010-05-28Use return rather than exit in main().Guy Harris1-53/+52
2010-05-27Fix bug #4735: tshark returns 0 on non-valid filter and interface.Bill Meier1-3/+5
2010-05-27Make -q not a capture option again - it's used by tshark even when notGuy Harris1-4/+7
2010-05-27Clean up the error reporting. An EOF from the sync pipe when capturingGuy Harris1-8/+20
2010-05-26Don't send ^T output to the standard error if we're a capture child.Guy Harris1-1/+1
2010-05-26If dumpcap exits abnormally, report the error.Guy Harris1-2/+8
2010-05-26Fix build without pcap.Guy Harris1-1/+1
2010-05-26Add a -q flag to dumpcap, to squelch its reporting of the packet count,Guy Harris1-9/+6
2010-05-19Fix indentation.Guy Harris1-17/+17
2010-05-17When dumpcap is run to get an interface list, interface capabilities, orGuy Harris1-3/+1
2010-05-14Um, no, the problem with the Leopard x86 build is that we first do aGuy Harris1-1/+1
2010-05-14See whether the Leopard x86 buildbot is upset because of the nameGuy Harris1-1/+1
2010-05-13Fetch an indication of whether the interface supports capturing inGuy Harris1-14/+17
2010-05-10Fix a gcc -Wshadow warning.Bill Meier1-5/+5
2010-05-08The default capture buffer size is, in fact, *nominally* 1MB; however,Guy Harris1-1/+1
2010-05-07As with the list of data link types, so with the list of interfaces; moveGuy Harris1-2/+19
2010-05-07Add routines vfprintf_stderr() and fprintf_stderr() to print to theGuy Harris1-0/+21
2010-05-07For TShark and Wireshark, get the list of link-layer types for anGuy Harris1-2/+19
2010-05-07Add monitor mode support to TShark.Guy Harris1-6/+19
2010-05-07Instead, say that the default is platform-dependent.Guy Harris1-1/+1
2010-05-07Now that we support -B on various UN*X platforms as well as Windows, weGuy Harris1-1/+1
2010-05-06Set the timestamp seconds type to TS_SECONDS_DEFAULT at startup so weGerald Combs1-0/+1
2010-05-06Just check for pcap_create(); it first appeared in libpcap 1.0.0, andGuy Harris1-5/+5
2010-05-06Checking in Stigs changes fromAnders Broman1-9/+9
2010-05-06Moved command line option for seconds type to -u.Stig Bjørlykke1-1/+13
2010-04-16Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2742 :Jeff Morriss1-3/+11
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