1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_dname_cat_clone, ldns_dname_cat
7
8
10 #ifdef HAVE_STDINT_H
11 #include <stdint.h>
12 #endif /* HAVE_STDINT_H */
13
14 #ifdef HAVE_STDBOOL_H
15 #include <stdbool.h>
16 #endif /* HAVE_STDBOOL_H */
17
18 #include <ldns/ldns.h>
19
20 ldns_rdf* ldns_dname_cat_clone(ldns_rdf *rd1, ldns_rdf *rd2);
21
22 ldns_status ldns_dname_cat(ldns_rdf *rd1, ldns_rdf *rd2);
23
25 ldns_dname_cat_clone() concatenate two dnames together
26 rd1: the leftside
27 rd2: the rightside
28 Returns a new rdf with leftside/rightside
29
30 ldns_dname_cat() concatenates rd2 after rd1 (rd2 is copied, rd1 is mod‐
31 ified)
32 rd1: the leftside
33 rd2: the rightside
34 Returns LDNS_STATUS_OK on success
35
37 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
38 Rozendaal and Miek Gieben.
39
40
42 Please report bugs to ldns-team@nlnetlabs.nl or in our Bugzilla at
43 http://www.nlnetlabs.nl/bugs/index.html
44
45 Be sure to select ldns as the product.
46
47
49 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
50 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
51 PARTICULAR PURPOSE.
52
54 perldoc Net::DNS, RFC1043, RFC1035, RFC4033, RFC4034 and RFC4035.
55
57 This manpage was automaticly generated from the ldns source code by use
58 of Doxygen and some perl.
59
60
61
62 ldns(25 Apr 2005)