aboutsummaryrefslogtreecommitdiffstats
path: root/capture_loop.c
AgeCommit message (Expand)AuthorFilesLines
2007-05-25The libpcap callback "user" argument *should* have been a "void *", asGuy Harris1-1/+1
2007-04-18Remove a linebreak from an error message dialog so it wraps properlyStephen Fisher1-1/+1
2007-04-13fix gcc warning about qualifier types (const) which are discarded when arrivingSebastien Tandel1-1/+1
2007-02-19Output error msgs when using dumpcap from cmd-line (stand-alone);Bill Meier1-4/+3
2007-02-19Fix error handling for invalid named pipe;Bill Meier1-1/+3
2007-02-10Windows named pipe support, which was disabled several months ago,Gerald Combs1-6/+6
2007-01-01Fix "dumpcap -w -" to use binmode on stdout if Windows;Bill Meier1-6/+14
2006-11-07As Ulf Lamping notes:Guy Harris1-20/+3
2006-11-02Frederic Heem:Jörg Mayer1-2/+24
2006-10-08from Richard van der Hoff:Ulf Lamping1-5/+5
2006-10-02Do not show the Windows specific message on non-Windows systems.Michael Tüxen1-1/+1
2006-09-25make sure we still compile for all out rh71 usersRonnie Sahlberg1-1/+1
2006-09-23squelch some compiler warnings due to currently disabled codeUlf Lamping1-0/+2
2006-09-22Add support for reading from stdin under Windows. Based on a patch sentGerald Combs1-96/+210
2006-08-26Go back to setting the capture filter to an empty string when we start;Guy Harris1-8/+0
2006-08-21Initialize the cfilter field of a capture_opts structure to a nullGuy Harris1-0/+8
2006-07-01Explicitly note that a "Please report this to the Wireshark developers"Guy Harris1-1/+2
2006-05-31Tethereal/tethereal -> TShark/tshark.Gerald Combs1-3/+3
2006-05-28Ethereal->WiresharkAnders Broman1-11/+11
2006-05-22ethereal->wiresharkRonnie Sahlberg1-1/+1
2006-05-21Fix the only gerald@ethereal.com references left.Guy Harris1-1/+1
2006-05-21If we have pcap_breakloop(), at least on UN*X we can stop the captureGuy Harris1-122/+136
2006-05-20The timeout is needed if you don't have pcap_breakloop(), so we'll putGuy Harris1-26/+112
2006-05-20Dumpcap doesn't need to ensure that it doesn't block indefinitely, as itGuy Harris1-112/+26
2006-04-29Have the ring buffer routines take a pointer to a "bytes written" countGuy Harris1-3/+5
2006-04-03Put the low-level sync routines into a common file so they can be sharedGuy Harris1-19/+19
2006-04-03In Tethereal, don't save to a temporary file if "-w" isn't specified,Guy Harris1-35/+41
2006-03-24remove some XXX markers in comments which are no (longer) ToDo itemsUlf Lamping1-2/+2
2006-03-21Simplify the argument list to cap_pipe_dispatch().Guy Harris1-16/+15
2006-03-13fix bug #803: sync pipe on Win32 wasn't set to binary mode, so error message ...Ulf Lamping1-1/+2
2006-03-09fix two bugs causing crashes on Win32: Ulf Lamping1-6/+10
2006-03-05Add in a variable we need on Windows.Guy Harris1-0/+3
2006-03-05In the capture_loop.c code, open the capture device for input beforeGuy Harris1-8/+8
2006-03-05Make some routines not used outside capture_loop.c static.Guy Harris1-2/+2
2006-03-05Pass two strings in capture child messages, so the child can sendGuy Harris1-73/+69
2006-03-04When capturing, we only support writing to libpcap files. Given that,Guy Harris1-50/+29
2006-02-17remove dependencies to pcap.h, so getting an idea what needs to be done by du...Ulf Lamping1-39/+18
2006-02-12Move create_tempfile() to tempfile.c out of util.c. This means dumpcapGuy Harris1-1/+1
2006-02-12mark an unused parameterUlf Lamping1-1/+1
2006-02-11the point of no return ...Ulf Lamping1-6/+9
2006-01-07move output_to_pipe flag from tethereal's loop_data into capture_opts, so it ...Ulf Lamping1-2/+5
2006-01-06code cleanup: use "-" for all places, where stdin/stdout is meantUlf Lamping1-1/+1
2006-01-04Handle a null-string file name in "capture_loop_open_output()" - that'sGuy Harris1-12/+25
2005-12-31Ooops, remove a debug message in the Win32 code part of the capturing loop.Ulf Lamping1-1/+1
2005-12-17Win32 bugfix: peeking the signal_pipe at capture_loop start seems to be unrel...Ulf Lamping1-10/+5
2005-12-14Constify a bunch of arguments and variables, to squelch compilerGuy Harris1-3/+2
2005-12-13HUGE STEP (hopefully toward the right direction):Ulf Lamping1-125/+81
2005-12-06rename pcap-....c/.h files to capture-pcap-....c/.hUlf Lamping1-1/+1
2005-12-05I've forgot to put one line under _WIN32, should fix the unix buildUlf Lamping1-5/+5
2005-12-05Win32: fix signal_pipe handling if we run dumpcap as a standalone application...Ulf Lamping1-22/+39