Disable IPv4 checksum verfification to match TCP and UDP.

Offloading seems to be very common nowadays and having this option
enabled by default generates a lot of false positives. Suggested by
Laura Chappell.

Change-Id: I285f218efb3c9f164d8ad7a6d6de8270e442ffff
Reviewed-on: https://code.wireshark.org/review/426
Reviewed-by: Evan Huus <eapache@gmail.com>
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
This commit is contained in:
Gerald Combs 2014-02-27 15:31:10 -08:00 committed by Alexis La Goutte
parent 616ed71918
commit 104a6edd1f
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ static gboolean ip_defragment = TRUE;
static gboolean ip_summary_in_tree = TRUE;
/* Perform IP checksum */
static gboolean ip_check_checksum = TRUE;
static gboolean ip_check_checksum = FALSE;
/* Assume TSO and correct zero-length IP packets */
static gboolean ip_tso_supported = TRUE;