aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ip.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2014-02-27 15:31:10 -0800
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2014-03-01 13:49:56 +0000
commit104a6edd1fb703c5c2319c893720df86f8c9a9e7 (patch)
tree6c0741a38a3f10fe940d9c8282dbfc6f1c79a77d /epan/dissectors/packet-ip.c
parent616ed7191883aeecf67c7a2840a077dad0804bdd (diff)
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>
Diffstat (limited to 'epan/dissectors/packet-ip.c')
-rw-r--r--epan/dissectors/packet-ip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ip.c b/epan/dissectors/packet-ip.c
index 8108b0c655..4347b2a589 100644
--- a/epan/dissectors/packet-ip.c
+++ b/epan/dissectors/packet-ip.c
@@ -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;