4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
22 #ident "%Z%%M% %I% %E% SMI"
25 * Copyright (c) 1994-1996, by Sun Microsystems, Inc.
26 * All rights reserved.
32 #include <sys/types.h>
33 #include <sys/socket.h>
34 #include <netinet/in.h>
35 #include <arpa/inet.h>
39 extern char *inet_nettoa(struct in_addr in
);
42 putnetmask(const struct in_addr key
, const struct in_addr netmask
, FILE *fp
)
48 net
.s_addr
= ntohl(key
.s_addr
);
49 if (fprintf(fp
, "%-20s", inet_nettoa(net
)) == EOF
)
51 if (fprintf(fp
, " %s", inet_ntoa(netmask
)) == EOF
)
53 if (putc('\n', fp
) == EOF
)
59 * getnetmaskbyaddr - get entries from network database
62 dogetnetmask(const char **list
)
65 struct in_addr addr
, netmask
;
67 if (list
== NULL
|| *list
== NULL
)
68 return (EXC_ENUM_NOT_SUPPORTED
);
70 for (; *list
!= NULL
; list
++) {
71 addr
.s_addr
= htonl(inet_network(*list
));
72 if (addr
.s_addr
!= -1) {
73 if (getnetmaskbyaddr(addr
, &netmask
) == 0) {
74 (void) putnetmask(addr
, netmask
, stdout
);
76 rc
= EXC_NAME_NOT_FOUND
;
79 rc
= EXC_NAME_NOT_FOUND
;