Tomato 1.25
[tomato.git] / release / src / router / busybox / include / inet_common.h
blobf4374e5a21e3820cd56a0e92b97ec03bce1285a4
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>
6 * Heavily modified by Manuel Novoa III Mar 12, 2001
8 */
10 #include "platform.h"
12 /* hostfirst!=0 If we expect this to be a hostname,
13 try hostname database first
15 int INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirst) FAST_FUNC;
17 /* numeric: & 0x8000: "default" instead of "*",
18 * & 0x4000: host instead of net,
19 * & 0x0fff: don't resolve
22 int INET6_resolve(const char *name, struct sockaddr_in6 *sin6) FAST_FUNC;
24 /* These return malloced string */
25 char *INET_rresolve(struct sockaddr_in *s_in, int numeric, uint32_t netmask) FAST_FUNC;
26 char *INET6_rresolve(struct sockaddr_in6 *sin6, int numeric) FAST_FUNC;