1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_update_pkt_new
7
8
10 #include <stdint.h>
11 #include <stdbool.h>
12
13 #include <ldns/ldns.h>
14
15 ldns_pkt* ldns_update_pkt_new(ldns_rdf *zone_rdf, ldns_rr_class clas,
16 ldns_rr_list *pr_rrlist, ldns_rr_list *up_rrlist, ldns_rr_list
17 *ad_rrlist);
18
20 ldns_update_pkt_new() create an update packet from zone name, class and
21 the rr lists
22 zone_rdf: name of the zone
23 clas: zone class
24 pr_rrlist: list of Prerequisite Section RRs
25 up_rrlist: list of Updates Section RRs
26 ad_rrlist: list of Additional Data Section RRs (currently
27 unused)
28 Returns the new packet
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_update_pkt_tsig_add, ldns_update_pkt_tsig_add,
49 ldns_update_zocount, ldns_update_prcount, ldns_update_upcount,
50 ldns_update_adcount, ldns_update_set_zocount, ldns_update_set_prcount,
51 ldns_update_set_upcount, ldns_update_set_adcount. And perldoc
52 Net::DNS, RFC1034, RFC1035, RFC4033, RFC4034 and RFC4035.
53
55 This manpage was automaticly generated from the ldns source code by use
56 of Doxygen and some perl.
57
58
59
60 30 May 2006 ldns(3)