summaryrefslogtreecommitdiff
path: root/dumpcap.c
AgeCommit message (Expand)AuthorFilesLines
2015-07-22Fix retrieval of data link type supported by remote interfaces with authentic...Pascal Quantin1-13/+20
2015-06-24dumpcap: fix files capture autostop conditionPascal Quantin1-2/+2
2015-05-28is_linux_bonding_device() is only used if we HAVE_PCAP_CREATE so only define itJeff Morriss1-3/+3
2015-03-30Work around a Linux bonding driver bug (and the lack of a libpcap workaround).Guy Harris1-1/+84
2015-03-17Don't say "Capturing on..." if we're not capturing on.Guy Harris1-37/+38
2015-03-17Allow multiple -D/-L/-d/-S flags, only allow one -k flag.Guy Harris1-12/+25
2015-03-17Update an error message to reflect all the run-dumpcap-and-quit arguments.Guy Harris1-1/+5
2014-12-25Check for getopt_long(), not getopt().Guy Harris1-1/+1
2014-05-08Profiling show that g_log() takes a lot of CPU even when logging isn'tAndersBroman1-0/+2
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
2014-02-27Fix dumpcap.c: Assigned value is garbage or undefined (clang analyzer)Hadriel Kaplan1-1/+6
2014-02-07Replace "svn" with "git" all over the place.Gerald Combs1-5/+5
2014-01-17From Toralf FörsterMartin Kaiser1-2/+2
2014-01-17Fix [-Wmissing-prototypes]Anders Broman1-1/+1
2013-12-20Change G_GINT64_CONSTANT(xxxxU) to G_GUINT64_CONSTANT(xxxx)Jakub Zawadzki1-1/+1
2013-12-17From "bd": Fix " Wireshark stops showing new packets but dumpcap keeps writin...Bill Meier1-2/+2
2013-12-02Specify SI units for the max filesize autostop condition. For now, keep the ...Chris Maynard1-7/+7
2013-11-29Replace macros: BSWAP16, BSWAP32, BSWAP64 with glib-version.Jakub Zawadzki1-9/+8
2013-11-26Report the interface when an open or an attempt to set the link-layerGuy Harris1-16/+8
2013-11-09include <wsutil/pint.h> only when needed.Jakub Zawadzki1-0/+1
2013-11-04Print if_droppedAnders Broman1-7/+12
2013-09-29Rename routines that write pcap-ng files to "pcapng_xxx" rather thanGuy Harris1-44/+44
2013-09-29We always write to a FILE *, so:Guy Harris1-9/+9
2013-08-29Handle the 2GiB boundary case of the max filesize autostop condition properly...Chris Maynard1-3/+7
2013-08-25Check our recently-added signal pipe in statistics mode.Gerald Combs1-0/+4
2013-08-23Output a warning about kernel BPF JIT compiler beeing activated.Anders Broman1-1/+1
2013-08-23Output a warning about kernel BPF JIT compiler beeing activated.Anders Broman1-0/+6
2013-08-22fix compiler warning on Debian wheezy (gcc 4.7.2)Martin Kaiser1-1/+2
2013-08-22Only enable the Linux kernel BPF JIT compiler if we're on Linux.Guy Harris1-10/+22
2013-08-22Enable Kernel BPF JIT compiler from dumpcap.Anders Broman1-0/+21
2013-08-14I guess Solaris's getopt_long() "struct option" declaration doesn't haveGuy Harris1-1/+1
2013-08-10Fix error when build with clang 3.0Alexis La Goutte1-2/+2
2013-07-29Trivial: Wrap text at column 80.Chris Maynard1-1/+2
2013-07-27if we capture on multiple interfaces, the output file will be pcapn-ngMartin Kaiser1-5/+6
2013-07-27command line option --capture-comment for dumpcapMartin Kaiser1-1/+10
2013-07-27use capture_comment from the capture_options structureMartin Kaiser1-1/+9
2013-07-24use getopt_long() in dumpcapMartin Kaiser1-1/+5
2013-07-16"man inet_pton" only says that it returns a negative value, zero or a postive...Chris Maynard1-1/+1
2013-07-15C++ style comments are not allowed in ISO C90. (Fixes the rest of them now t...Chris Maynard1-13/+13
2013-07-15Trivial: C++ style comments are not allowed in ISO C90.Chris Maynard1-1/+1
2013-06-27get main_window_update out of the way... pass an update_cb to the capture_syn...Luis Ontanon1-11/+18
2013-06-26Move tempfile.{h,c} into wsutil.Jeff Morriss1-1/+1
2013-06-04From Mike Garratt:Anders Broman1-0/+3
2013-05-22Pull the capture-session state information out of capture_opts and putGuy Harris1-1/+2
2013-05-22Rename capture_opts_trim_iface() toGuy Harris1-1/+1
2013-05-22On OS X, get the interface type from the System Configuration framework.Guy Harris1-3/+5
2013-04-25Send the output of the -D and -L options to the standard output ratherGuy Harris1-21/+0
2013-03-19From Michal Labedzki:Anders Broman1-18/+14
2013-03-10Make the memory limit (in bytes or packets) used for storing packetsMichael Tüxen1-20/+39
2013-03-03From beroset:Anders Broman1-13/+23