summaryrefslogtreecommitdiff
path: root/src/network/res_query.c
blob: 2f4da2e2e7a3214fb56b86ebedfaefdb67e05e1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <resolv.h>
#include <netdb.h>

int res_query(const char *name, int class, int type, unsigned char *dest, int len)
{
	unsigned char q[280];
	int ql = __res_mkquery(0, name, class, type, 0, 0, 0, q, sizeof q);
	if (ql < 0) return ql;
	return __res_send(q, ql, dest, len);
}

weak_alias(res_query, res_search);