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
|
|
|
|
*
|
2003-07-15 02:51:08 +05:30
|
|
|
* Version: $Id: inet_common.h,v 1.3 2003/07/14 21:20:52 andersen Exp $
|
2001-11-10 17:48:42 +05:30
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <features.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
|
|
|
|
|
|
|
extern const char bb_INET_default[]; /* = "default" */
|
|
|
|
|
|
|
|
/* 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);
|
|
|
|
|
|
|
|
|
|
|
|
/* numeric: & 0x8000: default instead of *,
|
|
|
|
* & 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
|
|
|
|
|
|
|
extern int INET6_resolve(char *name, struct sockaddr_in6 *sin6);
|
|
|
|
extern int INET6_rresolve(char *name, size_t len, struct sockaddr_in6 *sin6, int numeric);
|