aboutsummaryrefslogtreecommitdiff
path: root/contrib/ipfilter/lib/printip.c
blob: e988bdd92e01a864085a0600b9426d302838fdc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*	$FreeBSD: src/contrib/ipfilter/lib/printip.c,v 1.4.10.1.2.1 2009/10/25 01:10:29 kensmith Exp $	*/

/*
 * Copyright (C) 2002-2005 by Darren Reed.
 *
 * See the IPFILTER.LICENCE file for details on licencing.
 *
 * $Id: printip.c,v 1.3.4.1 2006/06/16 17:21:12 darrenr Exp $
 */

#include "ipf.h"


void	printip(addr)
u_32_t	*addr;
{
	struct in_addr ipa;

	ipa.s_addr = *addr;
	if (ntohl(ipa.s_addr) < 256)
		printf("%lu", (u_long)ntohl(ipa.s_addr));
	else
		printf("%s", inet_ntoa(ipa));
}