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.
34
35
37 Please report bugs to ldns-team@nlnetlabs.nl or in our bugzilla at
38 http://www.nlnetlabs.nl/bugs/index.html
39
40
42 Copyright (c) 2004 - 2006 NLnet Labs.
43
44 Licensed under the BSD License. There is NO warranty; not even for MER‐
45 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
46
48 perldoc Net::DNS, RFC1034, RFC1035, RFC4033, RFC4034 and RFC4035.
49
51 This manpage was automatically generated from the ldns source code.
52
53
54
55 30 May 2006 ldns(3)