diff --git a/src/core/inet.c b/src/core/inet.c index 15ad6ac3..556cbeb5 100644 --- a/src/core/inet.c +++ b/src/core/inet.c @@ -109,11 +109,12 @@ lwip_standard_chksum(void *dataptr, u16_t len) #endif -Curt McDowell -Broadcom Corp. -csm@broadcom.com - +#if 0 /* + * Curt McDowell + * Broadcom Corp. + * csm@broadcom.com + * * IP checksum two bytes at a time with support for * unaligned buffer. * Works for len up to and including 0x20000. @@ -159,8 +160,6 @@ lwip_standard_chksum2(void *dataptr, int len) return sum; } -#if 0 - /** * An optimized checksum routine. Basically, it uses loop-unrolling on * the checksum loop, treating the head and tail bytes specially, whereas