|
|
@ -2,7 +2,7 @@ |
|
|
#include <netdb.h> |
|
|
#include <netdb.h> |
|
|
#include "libc.h" |
|
|
#include "libc.h" |
|
|
|
|
|
|
|
|
int __res_query(const char *name, int class, int type, unsigned char *dest, int len) |
|
|
int res_query(const char *name, int class, int type, unsigned char *dest, int len) |
|
|
{ |
|
|
{ |
|
|
unsigned char q[280]; |
|
|
unsigned char q[280]; |
|
|
int ql = __res_mkquery(0, name, class, type, 0, 0, 0, q, sizeof q); |
|
|
int ql = __res_mkquery(0, name, class, type, 0, 0, 0, q, sizeof q); |
|
|
@ -10,5 +10,4 @@ int __res_query(const char *name, int class, int type, unsigned char *dest, int |
|
|
return __res_send(q, ql, dest, len); |
|
|
return __res_send(q, ql, dest, len); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
weak_alias(__res_query, res_query); |
|
|
weak_alias(res_query, res_search); |
|
|
weak_alias(__res_query, res_search); |
|
|
|
|
|
|