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>
This commit is contained in:
Michal Labedzki 2014-04-14 08:07:58 +02:00 committed by Alexis La Goutte
parent 5d51a8dc08
commit 3ca06aa167
1 changed files with 1 additions and 1 deletions

View File

@ -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;