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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
/*
* Copyright (C) 2012 Reto Guadagnini
* Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
#include "rr_set.h"
#include <library.h>
#include <utils/debug.h>
typedef struct private_rr_set_t private_rr_set_t;
/**
* private data of the rr_set
*/
struct private_rr_set_t {
/**
* public functions
*/
rr_set_t public;
/**
* List of Resource Records which form the RRset
*/
linked_list_t *rr_list;
/**
* List of the signatures (RRSIGs) of the Resource Records contained in
* this set
*/
linked_list_t *rrsig_list;
};
METHOD(rr_set_t, create_rr_enumerator, enumerator_t*,
private_rr_set_t *this)
{
return this->rr_list->create_enumerator(this->rr_list);
}
METHOD(rr_set_t, create_rrsig_enumerator, enumerator_t*,
private_rr_set_t *this)
{
if (this->rrsig_list)
{
return this->rrsig_list->create_enumerator(this->rrsig_list);
}
return NULL;
}
METHOD(rr_set_t, destroy, void,
private_rr_set_t *this)
{
this->rr_list->destroy_offset(this->rr_list,
offsetof(rr_t, destroy));
if (this->rrsig_list)
{
this->rrsig_list->destroy_offset(this->rrsig_list,
offsetof(rr_t, destroy));
}
free(this);
}
/*
* see header
*/
rr_set_t *rr_set_create(linked_list_t *list_of_rr, linked_list_t *list_of_rrsig)
{
private_rr_set_t *this;
INIT(this,
.public = {
.create_rr_enumerator = _create_rr_enumerator,
.create_rrsig_enumerator = _create_rrsig_enumerator,
.destroy = _destroy,
},
);
if (list_of_rr == NULL)
{
DBG1(DBG_LIB, "could not create a rr_set without a list_of_rr");
_destroy(this);
return NULL;
}
this->rr_list = list_of_rr;
this->rrsig_list = list_of_rrsig;
return &this->public;
}
|