2002-07-03 17:16:38 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini xgethostbyname2 implementation.
|
|
|
|
*
|
2006-07-10 17:11:19 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2002-07-03 17:16:38 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include <netdb.h>
|
|
|
|
#include "libbb.h"
|
|
|
|
|
|
|
|
|
2002-11-26 08:10:56 +05:30
|
|
|
#ifdef CONFIG_FEATURE_IPV6
|
2002-07-03 17:16:38 +05:30
|
|
|
struct hostent *xgethostbyname2(const char *name, int af)
|
|
|
|
{
|
|
|
|
struct hostent *retval;
|
|
|
|
|
|
|
|
if ((retval = gethostbyname2(name, af)) == NULL)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_herror_msg_and_die("%s", name);
|
2002-07-03 17:16:38 +05:30
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
#endif
|