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