diff options
| author | christos <christos@NetBSD.org> | 2004-12-19 06:42:24 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2004-12-19 06:42:24 +0000 |
| commit | 77e7bdb8aae4d2ffb0ff8e04b1138905c529445f (patch) | |
| tree | 8e2d349eb495b4320b7da2d277559d8c9b91106d /sys/netinet/ip_input.c | |
| parent | 225a67ff798159787e1cc3c75d3fa36952560c32 (diff) | |
yamt's changes seem to fix all the checksumming issues. Turn the loopback
checksums back off so we can make sure that everything works.
Diffstat (limited to 'sys/netinet/ip_input.c')
| -rw-r--r-- | sys/netinet/ip_input.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c index 94d8e656168..d8f43ce9f66 100644 --- a/sys/netinet/ip_input.c +++ b/sys/netinet/ip_input.c @@ -1,4 +1,4 @@ -/* $NetBSD: ip_input.c,v 1.207 2004/12/17 22:54:52 christos Exp $ */ +/* $NetBSD: ip_input.c,v 1.208 2004/12/19 06:42:24 christos Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -98,7 +98,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ip_input.c,v 1.207 2004/12/17 22:54:52 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ip_input.c,v 1.208 2004/12/19 06:42:24 christos Exp $"); #include "opt_inet.h" #include "opt_gateway.h" @@ -200,7 +200,7 @@ int ipprintfs = 0; #endif int ip_do_randomid = 0; -int ip_do_loopback_cksum = 1; +int ip_do_loopback_cksum = 0; /* * XXX - Setting ip_checkinterface mostly implements the receive side of |
