source: trunk/essentials/net-misc/wget/src/host.h

Last change on this file was 3440, checked in by bird, 18 years ago

wget 1.10.2

File size: 3.9 KB
Line 
1/* Declarations for host.c
2 Copyright (C) 1995, 1996, 1997, 2001 Free Software Foundation, Inc.
3
4This file is part of GNU Wget.
5
6GNU Wget is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11GNU Wget is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with Wget; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20In addition, as a special exception, the Free Software Foundation
21gives permission to link the code of its release of Wget with the
22OpenSSL project's "OpenSSL" library (or with modified versions of it
23that use the same license as the "OpenSSL" library), and distribute
24the linked executables. You must obey the GNU General Public License
25in all respects for all of the code used other than "OpenSSL". If you
26modify this file, you may extend this exception to your version of the
27file, but you are not obligated to do so. If you do not wish to do
28so, delete this exception statement from your version. */
29
30#ifndef HOST_H
31#define HOST_H
32
33#ifdef WINDOWS
34# include <winsock.h>
35#else
36# include <netdb.h>
37# include <sys/socket.h>
38# include <netinet/in.h>
39#ifndef __BEOS__
40# include <arpa/inet.h>
41#endif
42#endif
43
44struct url;
45struct address_list;
46
47/* This struct defines an IP address, tagged with family type. */
48
49typedef struct {
50 /* Address type. */
51 enum {
52 IPV4_ADDRESS
53#ifdef ENABLE_IPV6
54 , IPV6_ADDRESS
55#endif /* ENABLE_IPV6 */
56 } type;
57
58 /* Address data union: ipv6 contains IPv6-related data (address and
59 scope), and ipv4 contains the IPv4 address. */
60 union {
61#ifdef ENABLE_IPV6
62 struct {
63 struct in6_addr addr;
64# ifdef HAVE_SOCKADDR_IN6_SCOPE_ID
65 unsigned int scope_id;
66# endif
67 } ipv6;
68#endif /* ENABLE_IPV6 */
69 struct {
70 struct in_addr addr;
71 } ipv4;
72 } u;
73} ip_address;
74
75/* Because C doesn't support anonymous unions, access to ip_address
76 elements is unwieldy. Hence the accessors.
77
78 The _ADDR accessors return the address as the struct in_addr or
79 in6_addr. The _DATA accessor returns a pointer to the address data
80 -- pretty much the same as the above, but cast to void*. The
81 _SCOPE accessor returns the address's scope_id, and makes sense
82 only when IPv6 and HAVE_SOCKADDR_IN6_SCOPE_ID are both defined. */
83
84#define ADDRESS_IPV4_IN_ADDR(x) ((x)->u.ipv4.addr)
85/* Don't use &x->u.ipv4.addr.s_addr because it can be #defined to a
86 bitfield, which you can't take an address of. */
87#define ADDRESS_IPV4_DATA(x) ((void *)&(x)->u.ipv4.addr)
88
89#define ADDRESS_IPV6_IN6_ADDR(x) ((x)->u.ipv6.addr)
90#define ADDRESS_IPV6_DATA(x) ((void *)&(x)->u.ipv6.addr)
91#define ADDRESS_IPV6_SCOPE(x) ((x)->u.ipv6.scope_id)
92
93enum {
94 LH_SILENT = 1,
95 LH_BIND = 2,
96 LH_REFRESH = 4
97};
98struct address_list *lookup_host PARAMS ((const char *, int));
99
100void address_list_get_bounds PARAMS ((const struct address_list *,
101 int *, int *));
102const ip_address *address_list_address_at PARAMS ((const struct address_list *,
103 int));
104int address_list_contains PARAMS ((const struct address_list *, const ip_address *));
105void address_list_set_faulty PARAMS ((struct address_list *, int));
106void address_list_set_connected PARAMS ((struct address_list *));
107int address_list_connected_p PARAMS ((const struct address_list *));
108void address_list_release PARAMS ((struct address_list *));
109
110const char *pretty_print_address PARAMS ((const ip_address *));
111#ifdef ENABLE_IPV6
112int is_valid_ipv6_address PARAMS ((const char *, const char *));
113#endif
114
115int accept_domain PARAMS ((struct url *));
116int sufmatch PARAMS ((const char **, const char *));
117
118void host_cleanup PARAMS ((void));
119
120#endif /* HOST_H */
Note: See TracBrowser for help on using the repository browser.