166458Sdfr/*-
266458Sdfr * Copyright (c) 1990 The Regents of the University of California.
366458Sdfr * All rights reserved.
466458Sdfr *
566458Sdfr * Redistribution and use in source and binary forms, with or without
666458Sdfr * modification, are permitted provided that the following conditions
766458Sdfr * are met:
866458Sdfr * 1. Redistributions of source code must retain the above copyright
966458Sdfr *    notice, this list of conditions and the following disclaimer.
1066458Sdfr * 2. Redistributions in binary form must reproduce the above copyright
1166458Sdfr *    notice, this list of conditions and the following disclaimer in the
1266458Sdfr *    documentation and/or other materials provided with the distribution.
1366458Sdfr * 4. Neither the name of the University nor the names of its contributors
1466458Sdfr *    may be used to endorse or promote products derived from this software
1566458Sdfr *    without specific prior written permission.
1666458Sdfr *
1766458Sdfr * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1866458Sdfr * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1966458Sdfr * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2066458Sdfr * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2166458Sdfr * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2266458Sdfr * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2366458Sdfr * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2466458Sdfr * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2566458Sdfr * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2666458Sdfr * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2766458Sdfr * SUCH DAMAGE.
2866458Sdfr *
2966458Sdfr *	from tahoe:	in_cksum.c	1.2	86/01/05
3066458Sdfr *	from:		@(#)in_cksum.c	1.3 (Berkeley) 1/19/91
3166458Sdfr *	from: Id: in_cksum.c,v 1.8 1995/12/03 18:35:19 bde Exp
3266458Sdfr * $FreeBSD: releng/10.2/sys/amd64/include/in_cksum.h 235941 2012-05-24 22:00:48Z bz $
3366458Sdfr */
3466458Sdfr
3566458Sdfr#ifndef _MACHINE_IN_CKSUM_H_
3666458Sdfr#define	_MACHINE_IN_CKSUM_H_	1
3766458Sdfr
38143434Speter#ifndef _SYS_CDEFS_H_
39143434Speter#error this file needs sys/cdefs.h as a prerequisite
40143434Speter#endif
41143434Speter
4266458Sdfr#include <sys/cdefs.h>
4366458Sdfr
4466458Sdfr#define in_cksum(m, len)	in_cksum_skip(m, len, 0)
4566458Sdfr
46235941Sbz#if defined(IPVERSION) && (IPVERSION == 4)
4766458Sdfr/*
4866458Sdfr * It it useful to have an Internet checksum routine which is inlineable
4966458Sdfr * and optimized specifically for the task of computing IP header checksums
5066458Sdfr * in the normal case (where there are no options and the header length is
5166458Sdfr * therefore always exactly five 32-bit words.
5266458Sdfr */
53143063Sjoerg#ifdef __CC_SUPPORTS___INLINE
5466458Sdfr
5566458Sdfrstatic __inline void
5666458Sdfrin_cksum_update(struct ip *ip)
5766458Sdfr{
5866458Sdfr	int __tmpsum;
5966458Sdfr	__tmpsum = (int)ntohs(ip->ip_sum) + 256;
6066458Sdfr	ip->ip_sum = htons(__tmpsum + (__tmpsum >> 16));
6166458Sdfr}
6266458Sdfr
6366458Sdfr#else
6466458Sdfr
6566458Sdfr#define	in_cksum_update(ip) \
6666458Sdfr	do { \
6766458Sdfr		int __tmpsum; \
6866458Sdfr		__tmpsum = (int)ntohs(ip->ip_sum) + 256; \
6966458Sdfr		ip->ip_sum = htons(__tmpsum + (__tmpsum >> 16)); \
7066458Sdfr	} while(0)
7166458Sdfr
7266458Sdfr#endif
73235941Sbz#endif
7466458Sdfr
7566458Sdfr#ifdef _KERNEL
76235941Sbz#if defined(IPVERSION) && (IPVERSION == 4)
7766458Sdfru_int in_cksum_hdr(const struct ip *ip);
78235941Sbz#endif
7966458Sdfru_short	in_addword(u_short sum, u_short b);
8066458Sdfru_short	in_pseudo(u_int sum, u_int b, u_int c);
8166458Sdfru_short	in_cksum_skip(struct mbuf *m, int len, int skip);
8266458Sdfr#endif
8366458Sdfr
8466458Sdfr#endif /* _MACHINE_IN_CKSUM_H_ */
85