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

int res_querydomain(const char *name, const char *domain, int class, int type, unsigned char *dest, int len)
{
	char tmp[256];
	size_t nl = strnlen(name, 256);
	size_t dl = strnlen(domain, 256);
	if (nl+dl+1 > 255) return -1;
	memcpy(tmp, name, nl);
	tmp[nl] = '.';
	memcpy(tmp+nl+1, domain, dl+1);
	return res_query(tmp, class, type, dest, len);
}