]> sjero.net Git - wget/blob - src/host.h
[svn] Only include Unix-specific includes #ifndef WINDOWS.
[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 #ifdef WINDOWS
26 # include <winsock.h>
27 #else
28 # include <sys/socket.h>
29 # include <netinet/in.h>
30 #ifndef __BEOS__
31 # include <arpa/inet.h>
32 #endif
33 #endif
34
35 #undef INET6
36
37 struct url;
38 struct address_list;
39
40 /* wget_sockaddr is used instead of sockaddr where an IPV6 address
41    must fit.  */
42
43 typedef union {
44         struct sockaddr     sa;   /* Generic but too small */
45         struct sockaddr_in  sin;  /* IPv4 socket address */
46 #ifdef INET6
47         struct sockaddr_in6 sin6; /* IPv6 socket address */
48 #endif
49 } wget_sockaddr;
50
51 typedef struct {
52   unsigned char bytes[4];
53 } ip4_address;
54
55 /* If compiled with IPv6 support, we internally represent all IP
56    addresses as IPv6 addresses.  IPv4 addresses are dynamically mapped
57    to IPv6, i.e. stored in the format ::ffff:<Ipv4>.  */
58
59 #ifdef INET6
60 # define MAX_IP_ADDRESS_SIZE 16
61 #else
62 # define MAX_IP_ADDRESS_SIZE 4
63 #endif
64
65 typedef struct {
66   unsigned char bytes[MAX_IP_ADDRESS_SIZE];
67 } ip_address;
68
69 /* Function declarations */
70 struct address_list *lookup_host PARAMS ((const char *, int));
71 char *herrmsg PARAMS ((int));
72
73 void address_list_get_bounds PARAMS ((struct address_list *, int *, int *));
74 void address_list_copy_one PARAMS ((struct address_list *, int,
75                                     ip_address *));
76 int address_list_match_all PARAMS ((struct address_list *,
77                                     struct address_list *));
78 void address_list_set_faulty PARAMS ((struct address_list *, int));
79 void address_list_release PARAMS ((struct address_list *));
80
81 char *pretty_print_address PARAMS ((ip_address *));
82
83 int accept_domain PARAMS ((struct url *));
84 int sufmatch PARAMS ((const char **, const char *));
85
86 void host_cleanup PARAMS ((void));
87
88 void wget_sockaddr_set_address PARAMS((wget_sockaddr *, int, 
89                                        unsigned short, ip_address *));
90 void wget_sockaddr_set_port PARAMS((wget_sockaddr *, unsigned short));
91 void *wget_sockaddr_get_addr PARAMS((wget_sockaddr *));
92 unsigned short wget_sockaddr_get_port PARAMS((const wget_sockaddr *));
93 int sockaddr_len PARAMS(());
94 void map_ipv4_to_ip PARAMS((ip4_address *, ip_address *));
95 int  map_ip_to_ipv4 PARAMS((ip_address *, ip4_address *));
96  
97 extern  int     ip_default_family;      /* defined in host.c */
98
99
100 #endif /* HOST_H */