diff options
author | Linus Nordberg <linus@nordu.net> | 2016-03-30 21:35:31 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2016-03-30 21:35:31 +0200 |
commit | b69ff1c846250939de3e4f32ff4d07d6ee415009 (patch) | |
tree | 4b5755c39fdac519cb9b878d011ee33a729b8a62 /tools/dnssec/common.h | |
parent | 8106050f24d1552f9fe9f0f1521eb3068de08ea4 (diff) |
Add validatechain.c and move some code to common.c.
dns-net2wire.c is nothing but an ugly hack on top of getdns_query.c
making it save answer, validation_chain and trust anchors to three
separate files. Used for testing purposes.
validatechain takes the above mentioned three files as input and
performs DNSSEC validation.
Diffstat (limited to 'tools/dnssec/common.h')
-rw-r--r-- | tools/dnssec/common.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/dnssec/common.h b/tools/dnssec/common.h new file mode 100644 index 0000000..465379d --- /dev/null +++ b/tools/dnssec/common.h @@ -0,0 +1,5 @@ +int dump_tree(FILE *fp, const getdns_dict *response, const char *tree_name, const char *section_name); +size_t read_buffer(FILE *infp, uint8_t **bufp_out, size_t size_hint); +getdns_return_t wire_rrs2list(const uint8_t *buf, size_t buf_len, getdns_list **list_out); + + |