1ldns(3) Library Functions Manual ldns(3)
2
3
4
6 ldns_dname_cat_clone, ldns_dname_cat - concatenate two dnames
7
8
10 #include <stdint.h>
11 #include <stdbool.h>
12
13 #include <ldns/ldns.h>
14
15 ldns_rdf* ldns_dname_cat_clone(const ldns_rdf *rd1, const ldns_rdf
16 *rd2);
17
18 ldns_status ldns_dname_cat(ldns_rdf *rd1, const ldns_rdf *rd2);
19
21 ldns_dname_cat_clone() concatenates two dnames together
22 rd1: the leftside
23 rd2: the rightside
24 Returns a new rdf with leftside/rightside
25
26 ldns_dname_cat() concatenates rd2 after rd1 (rd2 is copied, rd1 is mod‐
27 ified)
28 rd1: the leftside
29 rd2: the rightside
30 Returns LDNS_STATUS_OK on success
31
33 The ldns team at NLnet Labs. Which consists out of Jelte Jansen and
34 Miek Gieben.
35
36
38 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
39 http://www.nlnetlabs.nl/bugs/index.html
40
41
43 Copyright (c) 2004 - 2006 NLnet Labs.
44
45 Licensed under the BSD License. There is NO warranty; not even for MER‐
46 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
47
49 perldoc Net::DNS, 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)