summaryrefslogtreecommitdiff
path: root/dumpcap.c
AgeCommit message (Expand)AuthorFilesLines
2011-05-28Initialize pcap using an empty array instead of NULL. So no specialMichael Tüxen1-8/+5
2011-05-27Initialize global_ld.pcaps before we setup signal handlers, which Stig Bjørlykke1-0/+3
2011-05-26Don't call g_log(); as the comment indicates it can cause problems.Gerald Combs1-6/+1
2011-05-26Don't call pcap_breakloop() if we're not capturing anything. Fixes aGerald Combs1-5/+12
2011-05-26Append received percentage after received/dropped counts.Chris Maynard1-7/+10
2011-05-26Provide consistent counters for received and dropped packets.Michael Tüxen1-22/+36
2011-05-26Fix the handling of pipes on Windows platforms.Michael Tüxen1-117/+113
2011-05-26Change "captured/dropped" terminology to "received/dropped". Also, unlessChris Maynard1-18/+14
2011-05-24Move the Windows argument list conversion code to a common routine.Gerald Combs1-10/+1
2011-05-21Use appropriate temporary filename when capturing from multiple interfaces.Michael Tüxen1-5/+9
2011-05-21As suggested on the dev list: Use pcapng and threadsMichael Tüxen1-2/+7
2011-05-21Pass a pcap_options * instead of a pcap_options **.Gerald Combs1-4/+4
2011-05-19Drop privileges after opening all pcap devices, not after the first one...Michael Tüxen1-12/+20
2011-05-19Actually use the defaults from the last commit message.Michael Tüxen1-3/+3
2011-05-19Add a queue and byte limit to the capture queue. Current defaultMichael Tüxen1-8/+61
2011-05-17Dear GLib Developers:Guy Harris1-1/+1
2011-05-16Add support for capturing from multiple interfaces.Michael Tüxen1-26/+185
2011-05-16#include <conio.h> when compiling under Windows with DEBUG_DUMPCAP defined.Chris Maynard1-0/+6
2011-05-16Use correct variable...Michael Tüxen1-1/+1
2011-05-16Fix compilation on windows (hopefully).Michael Tüxen1-2/+2
2011-05-16Make remote capturing settings a per interface thing. You can nowMichael Tüxen1-14/+9
2011-05-16Make pcap samping a per interface setting.Michael Tüxen1-6/+5
2011-05-16Don't use debug output.Michael Tüxen1-4/+4
2011-05-15Fix compilation on Windows (hopefully).Michael Tüxen1-6/+5
2011-05-15Change internal data structures to store and handle mulitpleMichael Tüxen1-369/+471
2011-05-13Fix a copy/paste error.Michael Tüxen1-1/+1
2011-05-13Get -L and -d working with multiple interface. Internally get some functionsMichael Tüxen1-70/+76
2011-05-13Add a comment what needs to be changed when adopting wireshark and tshark.Michael Tüxen1-0/+1
2011-05-12Add support for multiple interfaces when processing the -L option.Michael Tüxen1-21/+34
2011-05-12Initialize the glib thread system on all platforms, not only on Windows.Michael Tüxen1-2/+3
2011-05-12Add some more details (name of the interface and number of captured packets)Michael Tüxen1-8/+10
2011-05-05Forgot to remove my editor's tabs before committing...Jeff Morriss1-6/+6
2011-05-05Apply rev 14059 to non-Windows: update the display with new packets every 500Jeff Morriss1-17/+24
2011-04-22Add return instructions for system without support for G_GNUC_NORETURN (e.g. ...Jakub Zawadzki1-0/+1
2011-04-10Rename ws_stat to ws_stat64, and make it take a pointer to a ws_statb64Guy Harris1-2/+2
2011-03-21Fix a comment; Use consistent indentatation & formatting.Bill Meier1-2353/+2360
2011-02-24Fix Bug #5716: "dumpcap: -q option behavior doesn't match documentation"Bill Meier1-8/+18
2011-02-18Fix some dead code and zero division issues found by Clang scan-build.Gerald Combs1-16/+0
2011-02-17On Windows, try putting __declspec(noreturn) in front of declarations ofGuy Harris1-1/+1
2011-01-06On Windows, convert all of our command-line arguments from UTF-16 toGerald Combs1-0/+13
2011-01-04Free dumpcap from linking to wiretap.Jaap Keuter1-32/+8
2010-11-18Add a comment about the pipe read timeout on Windows.Gerald Combs1-0/+4
2010-11-17Set the pipe read timeout to 100 milliseconds instead of 100 microseconds.Gerald Combs1-3/+1
2010-11-16If pcap_geterr() returns "read error: PacketReceivePacket failed", report thatChris Maynard1-1/+2
2010-11-16Use more meaningful temp file name. Fixes bug 1882.Chris Maynard1-1/+35
2010-11-11OS X 10.6.5 is out, and it re-incorporates the libpcap workaround forGuy Harris1-15/+10
2010-10-21Fixed "Compiled with" information in the About box.Stig Bjørlykke1-1/+1
2010-09-30PIPE_READ_TIMEOUT should be in microseconds, not milliseconds.Guy Harris1-6/+7
2010-09-30Always use a timeout of 250ms for pipes when not using threads; that wayGuy Harris1-10/+19
2010-09-16Turn on ASLR via /DYNAMICBASE and DEP via SetProcessDEPPolicy().Gerald Combs1-1/+1