Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/include/inet_common.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (show annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (16 years, 9 months ago) by niro
File MIME type: text/plain
File size: 827 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

1 /* vi: set sw=4 ts=4: */
2 /*
3 * stolen from net-tools-1.59 and stripped down for busybox by
4 * Erik Andersen <andersen@codepoet.org>
5 *
6 * Heavily modified by Manuel Novoa III Mar 12, 2001
7 *
8 */
9
10 #include "platform.h"
11
12 /* hostfirst!=0 If we expect this to be a hostname,
13 try hostname database first
14 */
15 extern int INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirst);
16
17 /* numeric: & 0x8000: "default" instead of "*",
18 * & 0x4000: host instead of net,
19 * & 0x0fff: don't resolve
20 */
21 extern int INET_rresolve(char *name, size_t len, struct sockaddr_in *s_in,
22 int numeric, unsigned int netmask);
23
24 extern int INET6_resolve(const char *name, struct sockaddr_in6 *sin6);
25 extern int INET6_rresolve(char *name, size_t len, struct sockaddr_in6 *sin6, int numeric);