mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
400 B
21 lines
400 B
|
15 years ago
|
#include <netdb.h>
|
||
|
|
#include "__dns.h"
|
||
|
|
|
||
|
|
int res_query(const char *name, int class, int type, unsigned char *dest, int len)
|
||
|
|
{
|
||
|
|
if (class != 1 || len < 512)
|
||
|
|
return -1;
|
||
|
|
switch(__dns_doqueries(dest, name, &type, 1)) {
|
||
|
|
case EAI_NONAME:
|
||
|
|
h_errno = HOST_NOT_FOUND;
|
||
|
|
return -1;
|
||
|
|
case EAI_AGAIN:
|
||
|
|
h_errno = TRY_AGAIN;
|
||
|
|
return -1;
|
||
|
|
case EAI_FAIL:
|
||
|
|
h_errno = NO_RECOVERY;
|
||
|
|
return -1;
|
||
|
|
}
|
||
|
|
return 512;
|
||
|
|
}
|