22 lines
588 B
C
22 lines
588 B
C
|
/* $NetBSD: printtunable.c,v 1.1.1.1 2004/03/28 08:56:20 martti 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);
|
||
|
}
|
||
|
}
|