Actually use the defaults from the last commit message.

... and switch off debug output.

svn path=/trunk/; revision=37285
This commit is contained in:
Michael Tüxen 2011-05-19 05:51:52 +00:00
parent e960be113f
commit b51eba6e47
1 changed files with 3 additions and 3 deletions

View File

@ -120,7 +120,7 @@
*/
#include "wiretap/libpcap.h"
#define DEBUG_DUMPCAP
/**#define DEBUG_DUMPCAP**/
/**#define DEBUG_CHILD_DUMPCAP**/
#ifdef _WIN32
@ -142,8 +142,8 @@ FILE *debug_log; /* for logging debug messages to */
static GAsyncQueue *pcap_queue;
static gint64 pcap_queue_bytes;
static gint64 pcap_queue_packets;
static gint64 pcap_queue_byte_limit = 1000000;
static gint64 pcap_queue_packet_limit = 1;
static gint64 pcap_queue_byte_limit = 1024 * 1024;
static gint64 pcap_queue_packet_limit = 1000;
static gboolean capture_child = FALSE; /* FALSE: standalone call, TRUE: this is an Wireshark capture child */
#ifdef _WIN32