freebsd-dev/contrib/ipfilter/lib/printip.c
Cy Schubert 43988e3f50 Replace AF_INET6 ifdefs with USE_INET6 ifdefs. This is more consistent
and guaranteed to build everywhere in ipfilter.

Not all of this commit can be MFCed. Some is original code while others
are not.
2017-06-23 02:42:04 +00:00

44 lines
690 B
C

/* $FreeBSD$ */
/*
* Copyright (C) 2012 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
* $Id$
*/
#include "ipf.h"
void
printip(family, addr)
int family;
u_32_t *addr;
{
struct in_addr ipa;
if (family == AF_INET) {
ipa.s_addr = *addr;
if (ntohl(ipa.s_addr) < 256)
PRINTF("%lu", (u_long)ntohl(ipa.s_addr));
else
PRINTF("%s", inet_ntoa(ipa));
}
#ifdef USE_INET6
else if (family == AF_INET6) {
char buf[INET6_ADDRSTRLEN + 1];
const char *str;
buf[0] = '\0';
str = inet_ntop(AF_INET6, addr, buf, sizeof(buf) - 1);
if (str != NULL)
PRINTF("%s", str);
else
PRINTF("???");
}
#endif
else
PRINTF("?(%d)?", family);
}