aboutsummaryrefslogtreecommitdiff
path: root/src/zonefile.h
blob: 94a0de73e6a5e6964de4cb6ab1392b9a8939573a (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
/*
 * zonefile.h
 * (c) 2019 Jonas Gunz
 * License: MIT
 * */

#pragma once

#include <stdint.h>
#include <stdlib.h>

struct record_entry {
	char* name;
	uint32_t ttl;
	uint16_t class;
	uint16_t type;
	uint16_t rdlength;
	char* rd;
};

struct record_node {
	struct record_entry* rr;
	struct record_node* below;
	struct record_node* above;
};

/**
 * */
int zonefile_parse ( char* _filename, struct record_node* _dns_zone );

int zonefile_query ( char* _hostname, struct record_entry* _entry );

static int tree_insert ( struct record_node* _root, struct record_entry* _node );

static int tree_balance ( struct record_node* _root );

static struct record_entry* tree_get ( struct record_node* _root, char* _query );

static int tree_destroy ( struct record_node* _root );

/**
 * returns:
 * 0  :: _1 == _2
 * -1 :: _1 <  _2
 * +1 :: _1 >  _2
 * */
int string_compare ( char* _1, char* _2 );