mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-25 07:49:18 +00:00
efeb8bffe3
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
42 lines
674 B
C
42 lines
674 B
C
/* $FreeBSD$ */
|
|
|
|
/*
|
|
* Copyright (C) 2012 by Darren Reed.
|
|
*
|
|
* See the IPFILTER.LICENCE file for details on licencing.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include "ipf.h"
|
|
|
|
|
|
void
|
|
printip(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);
|
|
}
|