netbsd/external/bsd/ipf/dist/lib/printhostmask.c
2015-10-15 10:25:28 +02:00

40 lines
724 B
C

/* $NetBSD: printhostmask.c,v 1.3 2014/12/20 13:15:48 prlw1 Exp $ */
/*
* Copyright (C) 2012 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
* Id: printhostmask.c,v 1.1.1.2 2012/07/22 13:44:40 darrenr Exp $
*/
#include "ipf.h"
void
printhostmask(family, addr, mask)
int family;
u_32_t *addr, *mask;
{
#ifdef USE_INET6
char ipbuf[64];
#else
struct in_addr ipa;
#endif
if ((family == -1) || ((!addr || !*addr) && (!mask || !*mask)))
PRINTF("any");
else {
#ifdef USE_INET6
void *ptr = addr;
PRINTF("%s", inet_ntop(family, ptr, ipbuf, sizeof(ipbuf)));
#else
ipa.s_addr = *addr;
PRINTF("%s", inet_ntoa(ipa));
#endif
if (mask != NULL)
printmask(family, mask);
}
}