1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_dname_new_frm_str, ldns_dname_new_frm_data
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_new_frm_str(const char *str);
21
22 ldns_rdf* ldns_dname_new_frm_data(uint16_t size, const void *data);
23
25 ldns_dname_new_frm_str() Create a new dname rdf. Copies pointers!
26 str: string to use
27 Returns ldns_rdf*
28
29 ldns_dname_new_frm_data() Create a new dname rdf from data (the data is
30 copied)
31 size: the size of the data
32 *data: pointer to the actual data
33 Returns ldns_rdf*
34
36 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
37 Rozendaal and Miek Gieben.
38
39
41 Please report bugs to ldns-team@nlnetlabs.nl or in our Bugzilla at
42 http://www.nlnetlabs.nl/bugs/index.html
43
44 Be sure to select ldns as the product.
45
46
48 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
49 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
50 PARTICULAR PURPOSE.
51
52
54 ldns_pkt_query_new_frm_str, ldns_rdf_new_frm_str, ldns_rr_new_frm_str.
55 And perldoc Net::DNS, RFC1043, RFC1035, RFC4033, RFC4034 and RFC4035.
56
58 This manpage was automaticly generated from the ldns source code by use
59 of Doxygen and some perl.
60
61
62
63 ldns(25 Apr 2005)