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
|
|
|
|
*/
|
|
|
|
extern int INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirst);
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
extern int INET_rresolve(char *name, size_t len, struct sockaddr_in *s_in,
|
|
|
|
int numeric, unsigned int netmask);
|
2002-07-03 17:16:38 +05:30
|
|
|
|
2004-03-10 13:12:38 +05:30
|
|
|
extern int INET6_resolve(const char *name, struct sockaddr_in6 *sin6);
|
2002-07-03 17:16:38 +05:30
|
|
|
extern int INET6_rresolve(char *name, size_t len, struct sockaddr_in6 *sin6, int numeric);
|