blob: 3b05e50dc78c0751bc78016158c367935c2bc164 [file] [log] [blame] [raw]
/*
* Copyright (C) 2006 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
* $Id$
*/
#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));
}