1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_update_set_zocount, ldns_update_set_prcount, ldns_update_set_up‐
7 count, ldns_update_set_adcount - set the update packet counters
8
9
11 #include <stdint.h>
12 #include <stdbool.h>
13
14 #include <ldns/ldns.h>
15
16 ldns_update_set_zocount();
17
18 void ldns_update_set_prcount(ldns_pkt *p, uint16_t c);
19
20 void ldns_update_set_upcount(ldns_pkt *p, uint16_t c);
21
22 void ldns_update_set_adcount(ldns_pkt *p, uint16_t c);
23
25 ldns_update_set_zocount()
26
27 ldns_update_set_prcount() Set the pr count
28 p: the packet
29 c: the pr count to set
30
31 ldns_update_set_upcount() Set the up count
32 p: the packet
33 c: the up count to set
34
35 ldns_update_set_adcount() Set the ad count
36 p: the packet
37 c: the ad count to set
38
40 The ldns team at NLnet Labs.
41
42
44 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
45 http://www.nlnetlabs.nl/bugs/index.html
46
47
49 Copyright (c) 2004 - 2006 NLnet Labs.
50
51 Licensed under the BSD License. There is NO warranty; not even for MER‐
52 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
53
54
56 ldns_update_pkt_new. And perldoc Net::DNS, RFC1034, RFC1035, RFC4033,
57 RFC4034 and RFC4035.
58
60 This manpage was automatically generated from the ldns source code.
61
62
63
64 30 May 2006 ldns(3)