]> sjero.net Git - wget/blob - src/host.h
[svn] Commit IPv6 support by Thomas Lussnig.
[wget] / src / host.h
1 /* Declarations for host.c
2    Copyright (C) 1995, 1996, 1997, 2001 Free Software Foundation, Inc.
3
4 This file is part of GNU Wget.
5
6 GNU Wget is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 GNU Wget is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Wget; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20 #ifndef HOST_H
21 #define HOST_H
22
23 #include <netdb.h>
24
25 #undef INET6
26
27 struct url;
28 struct address_list;
29
30 /* wget_sockaddr is used instead of sockaddr where an IPV6 address
31    must fit.  */
32
33 typedef union {
34         struct sockaddr     sa;   /* Generic but too small */
35         struct sockaddr_in  sin;  /* IPv4 socket address */
36 #ifdef INET6
37         struct sockaddr_in6 sin6; /* IPv6 socket address */
38 #endif
39 } wget_sockaddr;
40
41 typedef struct {
42   unsigned char bytes[4];
43 } ip4_address;
44
45 /* If compiled with IPv6 support, we internally represent all IP
46    addresses as IPv6 addresses.  IPv4 addresses are dynamically mapped
47    to IPv6, i.e. stored in the format ::ffff:<Ipv4>.  */
48
49 #ifdef INET6
50 # define MAX_IP_ADDRESS_SIZE 16
51 #else
52 # define MAX_IP_ADDRESS_SIZE 4
53 #endif
54
55 typedef struct {
56   unsigned char bytes[MAX_IP_ADDRESS_SIZE];
57 } ip_address;
58
59 /* Function declarations */
60 struct address_list *lookup_host PARAMS ((const char *, int));
61 char *herrmsg PARAMS ((int));
62
63 void address_list_get_bounds PARAMS ((struct address_list *, int *, int *));
64 void address_list_copy_one PARAMS ((struct address_list *, int,
65                                     ip_address *));
66 int address_list_match_all PARAMS ((struct address_list *,
67                                     struct address_list *));
68 void address_list_set_faulty PARAMS ((struct address_list *, int));
69 void address_list_release PARAMS ((struct address_list *));
70
71 char *pretty_print_address PARAMS ((ip_address *));
72
73 int accept_domain PARAMS ((struct url *));
74 int sufmatch PARAMS ((const char **, const char *));
75
76 void host_cleanup PARAMS ((void));
77
78 void wget_sockaddr_set_address PARAMS((wget_sockaddr *, int, 
79                                        unsigned short, ip_address *));
80 void wget_sockaddr_set_port PARAMS((wget_sockaddr *, unsigned short));
81 void *wget_sockaddr_get_addr PARAMS((wget_sockaddr *));
82 unsigned short wget_sockaddr_get_port PARAMS((const wget_sockaddr *));
83 int sockaddr_len PARAMS(());
84 void map_ipv4_to_ip PARAMS((ip4_address *, ip_address *));
85 int  map_ip_to_ipv4 PARAMS((ip_address *, ip4_address *));
86  
87 extern  int     ip_default_family;      /* defined in host.c */
88
89
90 #endif /* HOST_H */