freebsd-dev/sbin/ipf/libipf/printtcpflags.c
Cy Schubert efeb8bffe3 ipflter: ANSIfy userland function declarations
Convert ipfilter userland function declarations from K&R to ANSI. This
syncs our function declarations with NetBSD hg commit 75edcd7552a0
(apply our changes). Though not copied from NetBSD, this change was
partially inspired by NetBSD's work and inspired by style(9).

Reviewed by:		glebius (for #network)
MFC after:		1 month
Differential Revision:	https://reviews.freebsd.org/D33595
2022-01-03 18:06:42 -08:00

30 lines
444 B
C

#include "ipf.h"
void
printtcpflags(u_32_t tcpf, u_32_t tcpfm)
{
u_char *t;
char *s;
if (tcpf & ~TCPF_ALL) {
PRINTF("0x%x", tcpf);
} else {
for (s = flagset, t = flags; *s; s++, t++) {
if (tcpf & *t)
(void)putchar(*s);
}
}
if (tcpfm) {
(void)putchar('/');
if (tcpfm & ~TCPF_ALL) {
PRINTF("0x%x", tcpfm);
} else {
for (s = flagset, t = flags; *s; s++, t++)
if (tcpfm & *t)
(void)putchar(*s);
}
}
}