Current Path : /compat/linux/proc/68247/cwd/usr/src/contrib/ipfilter/lib/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //compat/linux/proc/68247/cwd/usr/src/contrib/ipfilter/lib/getsumd.c |
/* $FreeBSD: release/9.1.0/contrib/ipfilter/lib/getsumd.c 170268 2007-06-04 02:54:36Z darrenr $ */ /* * Copyright (C) 2002 by Darren Reed. * * See the IPFILTER.LICENCE file for details on licencing. * * $Id: getsumd.c,v 1.2.4.1 2006/06/16 17:21:01 darrenr Exp $ */ #include "ipf.h" char *getsumd(sum) u_32_t sum; { static char sumdbuf[17]; if (sum & NAT_HW_CKSUM) sprintf(sumdbuf, "hw(%#0x)", sum & 0xffff); else sprintf(sumdbuf, "%#0x", sum); return sumdbuf; }