25 lines
451 B
C
25 lines
451 B
C
/* $NetBSD: printip.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: printip.c,v 1.3 2002/07/13 12:10:27 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));
|
|
}
|