diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-11-10 12:18:42 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-11-10 12:18:42 +0000 |
commit | c223ced0eab3d7b579b42c4626bb40686bd81c9a (patch) | |
tree | 870039993d700fe054484a2ea7b1bf24e3d467ae /include/inet_common.h | |
parent | 282671bf76bd7e3644b730673ca748947913b911 (diff) | |
download | busybox-w32-c223ced0eab3d7b579b42c4626bb40686bd81c9a.tar.gz busybox-w32-c223ced0eab3d7b579b42c4626bb40686bd81c9a.tar.bz2 busybox-w32-c223ced0eab3d7b579b42c4626bb40686bd81c9a.zip |
I forgot to add these. Part of the patch from vodz
Diffstat (limited to 'include/inet_common.h')
-rw-r--r-- | include/inet_common.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/inet_common.h b/include/inet_common.h new file mode 100644 index 000000000..2c5e8f673 --- /dev/null +++ b/include/inet_common.h | |||
@@ -0,0 +1,30 @@ | |||
1 | /* | ||
2 | * stolen from net-tools-1.59 and stripped down for busybox by | ||
3 | * Erik Andersen <andersee@debian.org> | ||
4 | * | ||
5 | * Heavily modified by Manuel Novoa III Mar 12, 2001 | ||
6 | * | ||
7 | * Version: $Id: inet_common.h,v 1.1 2001/11/10 12:18:42 andersen Exp $ | ||
8 | * | ||
9 | */ | ||
10 | |||
11 | #include <features.h> | ||
12 | #include <sys/types.h> | ||
13 | #include <sys/socket.h> | ||
14 | #include <arpa/inet.h> | ||
15 | |||
16 | |||
17 | extern const char bb_INET_default[]; /* = "default" */ | ||
18 | |||
19 | /* hostfirst!=0 If we expect this to be a hostname, | ||
20 | try hostname database first | ||
21 | */ | ||
22 | extern int INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirst); | ||
23 | |||
24 | |||
25 | /* numeric: & 0x8000: default instead of *, | ||
26 | * & 0x4000: host instead of net, | ||
27 | * & 0x0fff: don't resolve | ||
28 | */ | ||
29 | extern int INET_rresolve(char *name, size_t len, struct sockaddr_in *s_in, | ||
30 | int numeric, unsigned int netmask); | ||