2006-07-02 19:47:05 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2001-11-10 12:18:42 +00:00
|
|
|
/*
|
|
|
|
* stolen from net-tools-1.59 and stripped down for busybox by
|
2003-07-14 21:21:08 +00:00
|
|
|
* Erik Andersen <andersen@codepoet.org>
|
2001-11-10 12:18:42 +00:00
|
|
|
*
|
|
|
|
* Heavily modified by Manuel Novoa III Mar 12, 2001
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-03-09 22:39:08 +00:00
|
|
|
#include "platform.h"
|
2001-11-10 12:18:42 +00:00
|
|
|
|
|
|
|
/* hostfirst!=0 If we expect this to be a hostname,
|
|
|
|
try hostname database first
|
|
|
|
*/
|
2008-06-27 02:52:20 +00:00
|
|
|
int INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirst) FAST_FUNC;
|
2001-11-10 12:18:42 +00:00
|
|
|
|
2006-11-21 20:34:21 +00:00
|
|
|
/* numeric: & 0x8000: "default" instead of "*",
|
2001-11-10 12:18:42 +00:00
|
|
|
* & 0x4000: host instead of net,
|
|
|
|
* & 0x0fff: don't resolve
|
|
|
|
*/
|
2007-06-19 11:10:02 +00:00
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
int INET6_resolve(const char *name, struct sockaddr_in6 *sin6) FAST_FUNC;
|
2007-06-19 11:12:46 +00:00
|
|
|
|
|
|
|
/* These return malloced string */
|
2008-06-27 02:52:20 +00:00
|
|
|
char *INET_rresolve(struct sockaddr_in *s_in, int numeric, uint32_t netmask) FAST_FUNC;
|
|
|
|
char *INET6_rresolve(struct sockaddr_in6 *sin6, int numeric) FAST_FUNC;
|