aboutsummaryrefslogtreecommitdiffstats
path: root/capture_loop.c
Commit message (Expand)AuthorAgeFilesLines
* For bug 1685, check for the errors reported on at least some platformsGuy Harris2007-09-021-7/+30
* Change the "--enable-setuid-install" option to install dumpcap and TSharkGerald Combs2007-08-301-0/+3
* Add some comments to the effect that capture_loop_dispatch must timeout to makeRichard van der Hoff2007-08-241-3/+15
* The libpcap callback "user" argument *should* have been a "void *", asGuy Harris2007-05-251-1/+1
* Remove a linebreak from an error message dialog so it wraps properlyStephen Fisher2007-04-181-1/+1
* fix gcc warning about qualifier types (const) which are discarded when arrivingSebastien Tandel2007-04-131-1/+1
* Output error msgs when using dumpcap from cmd-line (stand-alone);Bill Meier2007-02-191-4/+3
* Fix error handling for invalid named pipe;Bill Meier2007-02-191-1/+3
* Windows named pipe support, which was disabled several months ago,Gerald Combs2007-02-101-6/+6
* Fix "dumpcap -w -" to use binmode on stdout if Windows;Bill Meier2007-01-011-6/+14
* As Ulf Lamping notes:Guy Harris2006-11-071-20/+3
* Frederic Heem:Jörg Mayer2006-11-021-2/+24
* from Richard van der Hoff:Ulf Lamping2006-10-081-5/+5
* Do not show the Windows specific message on non-Windows systems.Michael Tüxen2006-10-021-1/+1
* make sure we still compile for all out rh71 usersRonnie Sahlberg2006-09-251-1/+1
* squelch some compiler warnings due to currently disabled codeUlf Lamping2006-09-231-0/+2
* Add support for reading from stdin under Windows. Based on a patch sentGerald Combs2006-09-221-96/+210
* Go back to setting the capture filter to an empty string when we start;Guy Harris2006-08-261-8/+0
* Initialize the cfilter field of a capture_opts structure to a nullGuy Harris2006-08-211-0/+8
* Explicitly note that a "Please report this to the Wireshark developers"Guy Harris2006-07-011-1/+2
* Tethereal/tethereal -> TShark/tshark.Gerald Combs2006-05-311-3/+3
* Ethereal->WiresharkAnders Broman2006-05-281-11/+11
* ethereal->wiresharkRonnie Sahlberg2006-05-221-1/+1
* Fix the only gerald@ethereal.com references left.Guy Harris2006-05-211-1/+1
* If we have pcap_breakloop(), at least on UN*X we can stop the captureGuy Harris2006-05-211-122/+136
* The timeout is needed if you don't have pcap_breakloop(), so we'll putGuy Harris2006-05-201-26/+112
* Dumpcap doesn't need to ensure that it doesn't block indefinitely, as itGuy Harris2006-05-201-112/+26
* Have the ring buffer routines take a pointer to a "bytes written" countGuy Harris2006-04-291-3/+5
* Put the low-level sync routines into a common file so they can be sharedGuy Harris2006-04-031-19/+19
* In Tethereal, don't save to a temporary file if "-w" isn't specified,Guy Harris2006-04-031-35/+41
* remove some XXX markers in comments which are no (longer) ToDo itemsUlf Lamping2006-03-241-2/+2
* Simplify the argument list to cap_pipe_dispatch().Guy Harris2006-03-211-16/+15
* fix bug #803: sync pipe on Win32 wasn't set to binary mode, so error message ...Ulf Lamping2006-03-131-1/+2
* fix two bugs causing crashes on Win32: Ulf Lamping2006-03-091-6/+10
* Add in a variable we need on Windows.Guy Harris2006-03-051-0/+3
* In the capture_loop.c code, open the capture device for input beforeGuy Harris2006-03-051-8/+8
* Make some routines not used outside capture_loop.c static.Guy Harris2006-03-051-2/+2
* Pass two strings in capture child messages, so the child can sendGuy Harris2006-03-051-73/+69
* When capturing, we only support writing to libpcap files. Given that,Guy Harris2006-03-041-50/+29
* remove dependencies to pcap.h, so getting an idea what needs to be done by du...Ulf Lamping2006-02-171-39/+18
* Move create_tempfile() to tempfile.c out of util.c. This means dumpcapGuy Harris2006-02-121-1/+1
* mark an unused parameterUlf Lamping2006-02-121-1/+1
* the point of no return ...Ulf Lamping2006-02-111-6/+9
* move output_to_pipe flag from tethereal's loop_data into capture_opts, so it ...Ulf Lamping2006-01-071-2/+5
* code cleanup: use "-" for all places, where stdin/stdout is meantUlf Lamping2006-01-061-1/+1
* Handle a null-string file name in "capture_loop_open_output()" - that'sGuy Harris2006-01-041-12/+25
* Ooops, remove a debug message in the Win32 code part of the capturing loop.Ulf Lamping2005-12-311-1/+1
* Win32 bugfix: peeking the signal_pipe at capture_loop start seems to be unrel...Ulf Lamping2005-12-171-10/+5
* Constify a bunch of arguments and variables, to squelch compilerGuy Harris2005-12-141-3/+2
* HUGE STEP (hopefully toward the right direction):Ulf Lamping2005-12-131-125/+81