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