summaryrefslogtreecommitdiff
path: root/examples/ldns-resolver.c
blob: 04dcc35febdb4a9550d0bb4ef208d614fdb964e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
 * ldns-resolver tries to create a resolver structure from /dev/urandom
 * this is only useful to test the library for robusteness with input data
 *
 * (c) NLnet Labs 2006 - 2008
 * See the file LICENSE for the license
 */

#include "config.h"
#include "errno.h"

#include <ldns/ldns.h>

int
main(int argc, char **argv) {

	ldns_resolver *r;
	int line = 1;
	FILE *rand;
	ldns_status s;

	if (argc != 2 || strncmp(argv[1], "-h", 3) == 0) {
		printf("Usage: ldns-resolver <file>\n");
		printf("Tries to create a stub resolver structure from the given file.\n");
		exit(EXIT_FAILURE);
	}
	
	if (!(rand = fopen(argv[1], "r"))) {
		printf("Error opening %s: %s\n", argv[1], strerror(errno));
		exit(EXIT_FAILURE);
	}

	printf("Trying to read from %s\n", argv[1]);
	s = ldns_resolver_new_frm_fp_l(&r, rand, &line);
	if (s != LDNS_STATUS_OK) {
		printf("Failed: %s at line %d\n", ldns_get_errorstr_by_id(s), line);
		exit(EXIT_FAILURE);
	} else {
		printf("Succes\n");
		ldns_resolver_print(stdout, r);
		ldns_resolver_deep_free(r);
	}

	fclose(rand);

	return EXIT_SUCCESS;
}