1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_rr_print, ldns_rdf_print, ldns_pkt_print, ldns_rr_list_print,
7 ldns_resolver_print, ldns_zone_print
8
9
11 #include <stdint.h>
12 #include <stdbool.h>
13
14 #include <ldns/ldns.h>
15
16 void ldns_rr_print(FILE *output, const ldns_rr *rr);
17
18 void ldns_rdf_print(FILE *output, const ldns_rdf *rdf);
19
20 void ldns_pkt_print(FILE *output, const ldns_pkt *pkt);
21
22 void ldns_rr_list_print(FILE *output, const ldns_rr_list *list);
23
24 void ldns_resolver_print(FILE *output, const ldns_resolver *r);
25
26 void ldns_zone_print(FILE *output, const ldns_zone *z);
27
29 ldns_rr_print() Prints the data in the resource record to the given
30 file stream (in presentation format)
31
32 output: the file stream to print to
33 rr: the resource record to print
34 Returns void
35
36 ldns_rdf_print() Prints the data in the rdata field to the given file
37 stream (in presentation format)
38
39 output: the file stream to print to
40 rdf: the rdata field to print
41 Returns void
42
43 ldns_pkt_print() Prints the data in the DNS packet to the given file
44 stream (in presentation format)
45
46 output: the file stream to print to
47 pkt: the packet to print
48 Returns void
49
50 ldns_rr_list_print() print a rr_list to output
51 output: the fd to print to
52 list: the rr_list to print
53
54 ldns_resolver_print() Print a resolver (in sofar that is possible)
55 state to output.
56 output: the fd to print to
57 r: the resolver to print
58
59 ldns_zone_print() Print a zone structure * to output. Note the SOA
60 record is included in this output
61 output: the fd to print to
62 z: the zone to print
63
65 The ldns team at NLnet Labs. Which consists out of Jelte Jansen and
66 Miek Gieben.
67
68
70 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
71 http://www.nlnetlabs.nl/bugs/index.html
72
73
75 Copyright (c) 2004 - 2006 NLnet Labs.
76
77 Licensed under the BSD License. There is NO warranty; not even for MER‐
78 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
79
80
82 ldns_rr2str, ldns_rdf2str, ldns_pkt2str, ldns_rr_list2str,
83 ldns_key2str. And perldoc Net::DNS, RFC1034, RFC1035, RFC4033, RFC4034
84 and RFC4035.
85
87 This manpage was automaticly generated from the ldns source code by use
88 of Doxygen and some perl.
89
90
91
92 30 May 2006 ldns(3)