1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_pkt_verify - verify a packet
7
8
10 #include <stdint.h>
11 #include <stdbool.h>
12
13 #include <ldns/ldns.h>
14
15 ldns_status ldns_pkt_verify(const ldns_pkt *p, ldns_rr_type t, const
16 ldns_rdf *o, const ldns_rr_list *k, const ldns_rr_list *s, ldns_rr_list
17 *good_keys);
18
20 ldns_pkt_verify() verify a packet
21 p: the packet
22 t: the rr set type to check
23 o: the rr set name to check
24 k: list of keys
25 s: list of sigs (may be null)
26 good_keys: keys which validated the packet
27 Returns status
28
29
31 The ldns team at NLnet Labs. Which consists out of Jelte Jansen and
32 Miek Gieben.
33
34
36 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
37 http://www.nlnetlabs.nl/bugs/index.html
38
39
41 Copyright (c) 2004 - 2006 NLnet Labs.
42
43 Licensed under the BSD License. There is NO warranty; not even for MER‐
44 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
45
46
48 ldns_verify, ldns_sign_public, ldns_zone_sign. And perldoc Net::DNS,
49 RFC1034, RFC1035, RFC4033, RFC4034 and RFC4035.
50
52 This manpage was automatically generated from the ldns source code by
53 use of Doxygen and some perl.
54
55
56
57 30 May 2006 ldns(3)