aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2013-03-05 02:09:37 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2013-03-05 02:09:37 +0000
commit2b93c3b31efa93ca738258c2e4ecfdc4ae564161 (patch)
tree6ab270eac7d71f2a791d817d08c776c88da57049
parent9b01892eca52c94fb751dac2277875aa07298fab (diff)
Default capture buffer size is now 2MB. (See also r47920 and r47937)
svn path=/trunk/; revision=48081
-rw-r--r--tshark.c2
-rw-r--r--ui/gtk/main.c2
-rw-r--r--ui/qt/main.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/tshark.c b/tshark.c
index e379b86346..4a4e1f6e04 100644
--- a/tshark.c
+++ b/tshark.c
@@ -257,7 +257,7 @@ print_usage(gboolean print_ver)
fprintf(output, " -I capture in monitor mode, if available\n");
#endif
#if defined(_WIN32) || defined(HAVE_PCAP_CREATE)
- fprintf(output, " -B <buffer size> size of kernel buffer (def: 1MB)\n");
+ fprintf(output, " -B <buffer size> size of kernel buffer (def: 2MB)\n");
#endif
fprintf(output, " -y <link type> link layer type (def: first appropriate)\n");
fprintf(output, " -D print list of interfaces and exit\n");
diff --git a/ui/gtk/main.c b/ui/gtk/main.c
index eca6c4bf19..0483e51f41 100644
--- a/ui/gtk/main.c
+++ b/ui/gtk/main.c
@@ -1161,7 +1161,7 @@ print_usage(gboolean print_ver) {
fprintf(output, " -I capture in monitor mode, if available\n");
#endif
#if defined(_WIN32) || defined(HAVE_PCAP_CREATE)
- fprintf(output, " -B <buffer size> size of kernel buffer (def: 1MB)\n");
+ fprintf(output, " -B <buffer size> size of kernel buffer (def: 2MB)\n");
#endif
fprintf(output, " -y <link type> link layer type (def: first appropriate)\n");
fprintf(output, " -D print list of interfaces and exit\n");
diff --git a/ui/qt/main.cpp b/ui/qt/main.cpp
index 081b34bebe..ffa548eb7e 100644
--- a/ui/qt/main.cpp
+++ b/ui/qt/main.cpp
@@ -227,7 +227,7 @@ print_usage(gboolean print_ver) {
fprintf(output, " -S update packet display when new packets are captured\n");
fprintf(output, " -l turn on automatic scrolling while -S is in use\n");
#if defined(_WIN32) || defined(HAVE_PCAP_CREATE)
- fprintf(output, " -B <buffer size> size of kernel buffer (def: 1MB)\n");
+ fprintf(output, " -B <buffer size> size of kernel buffer (def: 2MB)\n");
#endif
fprintf(output, " -y <link type> link layer type (def: first appropriate)\n");
fprintf(output, " -D print list of interfaces and exit\n");