mirror of
https://github.com/fluencelabs/musl
synced 2025-06-03 01:51:51 +00:00
17 lines
356 B
C
17 lines
356 B
C
#define _GNU_SOURCE
|
|
|
|
#include <sys/socket.h>
|
|
#include <netdb.h>
|
|
#include <string.h>
|
|
#include <netinet/in.h>
|
|
|
|
struct hostent *gethostbyname2(const char *name, int af)
|
|
{
|
|
static struct hostent h;
|
|
static long buf[512/sizeof(long)];
|
|
struct hostent *res;
|
|
if (gethostbyname2_r(name, af, &h,
|
|
(void *)buf, sizeof buf, &res, &h_errno)) return 0;
|
|
return &h;
|
|
}
|