]> sjero.net Git - wget/blob - src/connect.h
Fix build when libpsl is not available
[wget] / src / connect.h
1 /* Declarations for connect.
2    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3    2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
4    Inc.
5
6 This file is part of GNU Wget.
7
8 GNU Wget is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11  (at your option) any later version.
12
13 GNU Wget is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with Wget.  If not, see <http://www.gnu.org/licenses/>.
20
21 Additional permission under GNU GPL version 3 section 7
22
23 If you modify this program, or any covered work, by linking or
24 combining it with the OpenSSL project's OpenSSL library (or a
25 modified version of that library), containing parts covered by the
26 terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
27 grants you additional permission to convey the resulting work.
28 Corresponding Source for a non-source form of such a combination
29 shall include the source code for the parts of OpenSSL used as well
30 as that of the covered work.  */
31
32 #ifndef CONNECT_H
33 #define CONNECT_H
34
35 #include "host.h"       /* for definition of ip_address */
36
37 /* Function declarations */
38
39 /* Returned by connect_to_host when host name cannot be resolved.  */
40 enum {
41   E_HOST = -100
42 };
43 int connect_to_host (const char *, int);
44 int connect_to_ip (const ip_address *, int, const char *);
45
46 int bind_local (const ip_address *, int *);
47 int accept_connection (int);
48
49 enum {
50   ENDPOINT_LOCAL,
51   ENDPOINT_PEER
52 };
53 bool socket_ip_address (int, ip_address *, int);
54 int  socket_family (int sock, int endpoint);
55
56 bool retryable_socket_connect_error (int);
57
58 /* Flags for select_fd's WAIT_FOR argument. */
59 enum {
60   WAIT_FOR_READ = 1,
61   WAIT_FOR_WRITE = 2
62 };
63 int select_fd (int, double, int);
64 bool test_socket_open (int);
65
66 struct transport_implementation {
67   int (*reader) (int, char *, int, void *);
68   int (*writer) (int, char *, int, void *);
69   int (*poller) (int, double, int, void *);
70   int (*peeker) (int, char *, int, void *);
71   const char *(*errstr) (int, void *);
72   void (*closer) (int, void *);
73 };
74
75 void fd_register_transport (int, struct transport_implementation *, void *);
76 void *fd_transport_context (int);
77 int fd_read (int, char *, int, double);
78 int fd_write (int, char *, int, double);
79 int fd_peek (int, char *, int, double);
80 const char *fd_errstr (int);
81 void fd_close (int);
82
83 #endif /* CONNECT_H */