source: azure_iot_hub_f767zi/trunk/asp_baseplatform/lwip/lwip-2.1.2/src/include/lwip/dns.h@ 457

Last change on this file since 457 was 457, checked in by coas-nagasima, 4 years ago

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 4.8 KB
Line 
1/**
2 * @file
3 * DNS API
4 */
5
6/**
7 * lwip DNS resolver header file.
8
9 * Author: Jim Pettinato
10 * April 2007
11
12 * ported from uIP resolv.c Copyright (c) 2002-2003, Adam Dunkels.
13 *
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
16 * are met:
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
22 * 3. The name of the author may not be used to endorse or promote
23 * products derived from this software without specific prior
24 * written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
27 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
28 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
30 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
32 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
34 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 */
38
39#ifndef LWIP_HDR_DNS_H
40#define LWIP_HDR_DNS_H
41
42#include "lwip/opt.h"
43
44#if LWIP_DNS
45
46#include "lwip/ip_addr.h"
47#include "lwip/err.h"
48
49#ifdef __cplusplus
50extern "C" {
51#endif
52
53/** DNS timer period */
54#define DNS_TMR_INTERVAL 1000
55
56/* DNS resolve types: */
57#define LWIP_DNS_ADDRTYPE_IPV4 0
58#define LWIP_DNS_ADDRTYPE_IPV6 1
59#define LWIP_DNS_ADDRTYPE_IPV4_IPV6 2 /* try to resolve IPv4 first, try IPv6 if IPv4 fails only */
60#define LWIP_DNS_ADDRTYPE_IPV6_IPV4 3 /* try to resolve IPv6 first, try IPv4 if IPv6 fails only */
61#if LWIP_IPV4 && LWIP_IPV6
62#ifndef LWIP_DNS_ADDRTYPE_DEFAULT
63#define LWIP_DNS_ADDRTYPE_DEFAULT LWIP_DNS_ADDRTYPE_IPV4_IPV6
64#endif
65#elif LWIP_IPV4
66#define LWIP_DNS_ADDRTYPE_DEFAULT LWIP_DNS_ADDRTYPE_IPV4
67#else
68#define LWIP_DNS_ADDRTYPE_DEFAULT LWIP_DNS_ADDRTYPE_IPV6
69#endif
70
71#if DNS_LOCAL_HOSTLIST
72/** struct used for local host-list */
73struct local_hostlist_entry {
74 /** static hostname */
75 const char *name;
76 /** static host address in network byteorder */
77 ip_addr_t addr;
78 struct local_hostlist_entry *next;
79};
80#define DNS_LOCAL_HOSTLIST_ELEM(name, addr_init) {name, addr_init, NULL}
81#if DNS_LOCAL_HOSTLIST_IS_DYNAMIC
82#ifndef DNS_LOCAL_HOSTLIST_MAX_NAMELEN
83#define DNS_LOCAL_HOSTLIST_MAX_NAMELEN DNS_MAX_NAME_LENGTH
84#endif
85#define LOCALHOSTLIST_ELEM_SIZE ((sizeof(struct local_hostlist_entry) + DNS_LOCAL_HOSTLIST_MAX_NAMELEN + 1))
86#endif /* DNS_LOCAL_HOSTLIST_IS_DYNAMIC */
87#endif /* DNS_LOCAL_HOSTLIST */
88
89#if LWIP_IPV4
90extern const ip_addr_t dns_mquery_v4group;
91#endif /* LWIP_IPV4 */
92#if LWIP_IPV6
93extern const ip_addr_t dns_mquery_v6group;
94#endif /* LWIP_IPV6 */
95
96/** Callback which is invoked when a hostname is found.
97 * A function of this type must be implemented by the application using the DNS resolver.
98 * @param name pointer to the name that was looked up.
99 * @param ipaddr pointer to an ip_addr_t containing the IP address of the hostname,
100 * or NULL if the name could not be found (or on any other error).
101 * @param callback_arg a user-specified callback argument passed to dns_gethostbyname
102*/
103typedef void (*dns_found_callback)(const char *name, const ip_addr_t *ipaddr, void *callback_arg);
104
105void dns_init(void);
106void dns_tmr(void);
107void dns_setserver(u8_t numdns, const ip_addr_t *dnsserver);
108const ip_addr_t* dns_getserver(u8_t numdns);
109err_t dns_gethostbyname(const char *hostname, ip_addr_t *addr,
110 dns_found_callback found, void *callback_arg);
111err_t dns_gethostbyname_addrtype(const char *hostname, ip_addr_t *addr,
112 dns_found_callback found, void *callback_arg,
113 u8_t dns_addrtype);
114
115
116#if DNS_LOCAL_HOSTLIST
117size_t dns_local_iterate(dns_found_callback iterator_fn, void *iterator_arg);
118err_t dns_local_lookup(const char *hostname, ip_addr_t *addr, u8_t dns_addrtype);
119#if DNS_LOCAL_HOSTLIST_IS_DYNAMIC
120int dns_local_removehost(const char *hostname, const ip_addr_t *addr);
121err_t dns_local_addhost(const char *hostname, const ip_addr_t *addr);
122#endif /* DNS_LOCAL_HOSTLIST_IS_DYNAMIC */
123#endif /* DNS_LOCAL_HOSTLIST */
124
125#ifdef __cplusplus
126}
127#endif
128
129#endif /* LWIP_DNS */
130
131#endif /* LWIP_HDR_DNS_H */
Note: See TracBrowser for help on using the repository browser.