NetBSD/dist/ipf/lib/printhostmask.c

47 lines
775 B
C

/* $NetBSD: printhostmask.c,v 1.1.1.1 2004/03/28 08:56:20 martti Exp $ */
/*
* Copyright (C) 1993-2001 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
* Id: printhostmask.c,v 1.8 2002/04/11 15:01:19 darrenr Exp
*/
#include "ipf.h"
void printhostmask(v, addr, mask)
int v;
u_32_t *addr, *mask;
{
#ifdef USE_INET6
char ipbuf[64];
#else
struct in_addr ipa;
#endif
if (!*addr && !*mask)
printf("any");
else {
#ifdef USE_INET6
void *ptr = addr;
int af;
if (v == 4) {
ptr = addr;
af = AF_INET;
} else if (v == 6) {
ptr = addr;
af = AF_INET6;
} else
af = 0;
printf("%s", inet_ntop(af, ptr, ipbuf, sizeof(ipbuf)));
#else
ipa.s_addr = *addr;
printf("%s", inet_ntoa(ipa));
#endif
printmask(mask);
}
}