summaryrefslogtreecommitdiff
path: root/epan/tap.c
diff options
context:
space:
mode:
authorMichal Labedzki <michal.labedzki@tieto.com>2014-04-14 08:07:58 +0200
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2014-04-14 06:29:55 +0000
commit3ca06aa167bf48278a2eb7b8cbd1292b4644cc28 (patch)
tree3e1025720dca6341530a52d7df35cc10030c0514 /epan/tap.c
parent5d51a8dc080f3c4301a5bf4312bbcb906940e597 (diff)
downloadwireshark-3ca06aa167bf48278a2eb7b8cbd1292b4644cc28.tar.gz
Increase tap limit to 5000
This will fix "Warn Too many taps queued" information, while there is more then 100 PDUs to be exported. For example while exporting Logcat from TCP/IP it is quite often to have PDU with multiple Logcat PDUs around 1000. Change-Id: I24d0619e57ae494c836c19c8a67df44503c54318 Reviewed-on: https://code.wireshark.org/review/1096 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'epan/tap.c')
-rw-r--r--epan/tap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/tap.c b/epan/tap.c
index 7120caddc1..8fda9a697b 100644
--- a/epan/tap.c
+++ b/epan/tap.c
@@ -58,7 +58,7 @@ typedef struct _tap_packet_t {
const void *tap_specific_data;
} tap_packet_t;
-#define TAP_PACKET_QUEUE_LEN 100
+#define TAP_PACKET_QUEUE_LEN 5000
static tap_packet_t tap_packet_array[TAP_PACKET_QUEUE_LEN];
static guint tap_packet_index;