blob: 1a5efe8d7ee63a6660b445a190768951bbae2938 (
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
|
/*
* Copyright (C) 1993-2001 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
* $Id: printmask.c,v 1.5 2002/06/15 04:48:33 darrenr Exp $
*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include "ipf.h"
void printmask(v, mask)
int v;
u_32_t *mask;
{
struct in_addr ipa;
int ones;
#ifdef USE_INET6
if (v == 6)
printf("/%d", count6bits(mask));
else
#endif
if ((ones = count4bits(*mask)) == -1) {
ipa.s_addr = *mask;
printf("/%s", inet_ntoa(ipa));
} else
printf("/%d", ones);
}
|