Welcome to mirror list, hosted at ThFree Co, Russian Federation.

xgethostbyname2.c « libbb - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83d5386699e6dac1e50d1fda906b206fa31d7c22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* vi: set sw=4 ts=4: */
/*
 * Mini xgethostbyname2 implementation.
 *
 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
 */

#include <netdb.h>
#include "libbb.h"


#ifdef CONFIG_FEATURE_IPV6
struct hostent *xgethostbyname2(const char *name, int af)
{
	struct hostent *retval;

	if ((retval = gethostbyname2(name, af)) == NULL)
		bb_herror_msg_and_die("%s", name);

	return retval;
}
#endif