2 * Copyright (C) 1993-2005 by Darren Reed.
3 * See the IPFILTER.LICENCE file for details on licencing.
11 printf("%s\tmin %#lx\tmax %#lx\tcurrent ",
12 tup
->ipft_name
, tup
->ipft_min
, tup
->ipft_max
);
13 if (tup
->ipft_sz
== sizeof(u_long
))
14 printf("%lu\n", tup
->ipft_vlong
);
15 else if (tup
->ipft_sz
== sizeof(u_int
))
16 printf("%u\n", tup
->ipft_vint
);
17 else if (tup
->ipft_sz
== sizeof(u_short
))
18 printf("%hu\n", tup
->ipft_vshort
);
19 else if (tup
->ipft_sz
== sizeof(u_char
))
20 printf("%u\n", (u_int
)tup
->ipft_vchar
);
22 printf("sz = %d\n", tup
->ipft_sz
);