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