1ldns(25 Apr 2005) ldns(25 Apr 2005)
2
3
4
6 ldns_send_udp, ldns_send_tcp, ldns_send
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_send_udp();
21
22 ldns_send_tcp();
23
24 ldns_status ldns_send(ldns_pkt **pkt, ldns_resolver *r, ldns_pkt
25 *query_pkt);
26
28 ldns_send_udp()
29
30 ldns_send_tcp()
31
32 ldns_send() Sends ptk to the nameserver at the resolver object. Returns
33 the data as a ldns_pkt
34
35 pkt: packet received from the nameserver
36 r: the resolver to use
37 query_pkt: the query to send
38 Returns status
39
41 The ldns team at NLnet Labs. Which consists out of: Jelte Jansen, Erik
42 Rozendaal and 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 Be sure to select ldns as the product.
50
51
53 Copyright (c) 2004, 2005 NLnet Labs. Licensed under the BSD License.
54 There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
55 PARTICULAR PURPOSE.
56
58 perldoc Net::DNS, RFC1043, RFC1035, RFC4033, RFC4034 and RFC4035.
59
61 This manpage was automaticly generated from the ldns source code by use
62 of Doxygen and some perl.
63
64
65
66 ldns(25 Apr 2005)