Current Path : /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 : //usr/src/contrib/ipfilter/lib/printtunable.c |
/* $FreeBSD: release/9.1.0/contrib/ipfilter/lib/printtunable.c 170268 2007-06-04 02:54:36Z darrenr $ */ /* * Copyright (C) 2003 by Darren Reed. * * See the IPFILTER.LICENCE file for details on licencing. * * $Id: printtunable.c,v 1.1.4.1 2006/06/16 17:21:15 darrenr Exp $ */ #include "ipf.h" void printtunable(tup) ipftune_t *tup; { printf("%s\tmin %#lx\tmax %#lx\tcurrent ", tup->ipft_name, tup->ipft_min, tup->ipft_max); if (tup->ipft_sz == sizeof(u_long)) printf("%lu\n", tup->ipft_vlong); else if (tup->ipft_sz == sizeof(u_int)) printf("%u\n", tup->ipft_vint); else if (tup->ipft_sz == sizeof(u_short)) printf("%hu\n", tup->ipft_vshort); else if (tup->ipft_sz == sizeof(u_char)) printf("%u\n", (u_int)tup->ipft_vchar); else { printf("sz = %d\n", tup->ipft_sz); } }