blob: f3ec165d7f57d52cb979eaca236c7ec107b7ba2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
* Copyright (C) 2002-2004 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
* Added redirect stuff and a variety of bug fixes. (mcn@EnGarde.com)
*/
#include "ipf.h"
#pragma ident "%Z%%M% %I% %E% SMI"
#if !defined(lint)
static const char rcsid[] = "@(#)$Id: printactiveaddr.c,v 1.1 2008/02/12 16:11:49 darren_r Exp $";
#endif
void
printactiveaddress(v, fmt, addr, ifname)
int v;
char *fmt;
i6addr_t *addr;
char *ifname;
{
switch (v)
{
case 4 :
printf(fmt, inet_ntoa(addr->in4));
break;
#ifdef USE_INET6
case 6 :
printaddr(v, FRI_NORMAL, ifname, (u_32_t *)&addr->in6, NULL);
break;
#endif
default :
break;
}
}
|