freebsd-dev/sbin/ipf/libipf/print_toif.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

47 lines
854 B
C

/* $FreeBSD$ */
/*
* Copyright (C) 2012 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
* $Id$
*/
#include "ipf.h"
void
print_toif(int family, char *tag, char *base, frdest_t *fdp)
{
switch (fdp->fd_type)
{
case FRD_NORMAL :
PRINTF("%s %s%s", tag, base + fdp->fd_name,
(fdp->fd_ptr || (long)fdp->fd_ptr == -1) ? "" : "(!)");
#ifdef USE_INET6
if (family == AF_INET6) {
if (IP6_NOTZERO(&fdp->fd_ip6)) {
char ipv6addr[80];
inet_ntop(AF_INET6, &fdp->fd_ip6, ipv6addr,
sizeof(fdp->fd_ip6));
PRINTF(":%s", ipv6addr);
}
} else
#endif
if (fdp->fd_ip.s_addr)
PRINTF(":%s", inet_ntoa(fdp->fd_ip));
putchar(' ');
break;
case FRD_DSTLIST :
PRINTF("%s dstlist/%s ", tag, base + fdp->fd_name);
break;
default :
PRINTF("%s <%d>", tag, fdp->fd_type);
break;
}
}