Standardize on the vi editing directives being on the first line.
[oweals/busybox.git] / include / inet_common.h
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  * Version:     $Id: inet_common.h,v 1.4 2004/03/10 07:42:37 mjn3 Exp $
9  *
10  */
11
12 #include <features.h>
13 #include <sys/types.h>
14 #include <sys/socket.h>
15 #include "platform.h"
16
17
18 extern const char bb_INET_default[];    /* = "default" */
19
20 /* hostfirst!=0 If we expect this to be a hostname,
21    try hostname database first
22  */
23 extern int INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirst);
24
25
26 /* numeric: & 0x8000: default instead of *,
27  *          & 0x4000: host instead of net,
28  *          & 0x0fff: don't resolve
29  */
30 extern int INET_rresolve(char *name, size_t len, struct sockaddr_in *s_in,
31                          int numeric, unsigned int netmask);
32
33 extern int INET6_resolve(const char *name, struct sockaddr_in6 *sin6);
34 extern int INET6_rresolve(char *name, size_t len, struct sockaddr_in6 *sin6, int numeric);