1999-12-02 02:42:23 -05:00
|
|
|
/* Declarations for connect.
|
2007-09-28 18:45:31 -04:00
|
|
|
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
|
|
|
|
2004, 2005, 2006, 2007 Free Software Foundation, Inc.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
This file is part of GNU Wget.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
GNU Wget is free software; you can redistribute it and/or modify
|
1999-12-02 02:42:23 -05:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-10 01:53:22 -04:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2003-10-30 19:18:08 -05:00
|
|
|
(at your option) any later version.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
GNU Wget is distributed in the hope that it will be useful,
|
1999-12-02 02:42:23 -05:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-07-10 01:53:22 -04:00
|
|
|
along with Wget. If not, see <http://www.gnu.org/licenses/>.
|
2002-05-17 22:16:36 -04:00
|
|
|
|
|
|
|
In addition, as a special exception, the Free Software Foundation
|
|
|
|
gives permission to link the code of its release of Wget with the
|
|
|
|
OpenSSL project's "OpenSSL" library (or with modified versions of it
|
|
|
|
that use the same license as the "OpenSSL" library), and distribute
|
|
|
|
the linked executables. You must obey the GNU General Public License
|
|
|
|
in all respects for all of the code used other than "OpenSSL". If you
|
|
|
|
modify this file, you may extend this exception to your version of the
|
|
|
|
file, but you are not obligated to do so. If you do not wish to do
|
|
|
|
so, delete this exception statement from your version. */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
#ifndef CONNECT_H
|
|
|
|
#define CONNECT_H
|
|
|
|
|
2003-10-29 18:13:25 -05:00
|
|
|
#include "host.h" /* for definition of ip_address */
|
2001-11-26 00:36:33 -05:00
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
/* Function declarations */
|
2001-11-26 00:36:33 -05:00
|
|
|
|
2003-11-05 20:12:03 -05:00
|
|
|
/* Returned by connect_to_host when host name cannot be resolved. */
|
|
|
|
enum {
|
|
|
|
E_HOST = -100
|
|
|
|
};
|
2005-06-19 18:34:58 -04:00
|
|
|
int connect_to_host (const char *, int);
|
|
|
|
int connect_to_ip (const ip_address *, int, const char *);
|
2003-10-30 19:18:08 -05:00
|
|
|
|
2005-06-19 18:34:58 -04:00
|
|
|
int bind_local (const ip_address *, int *);
|
|
|
|
int accept_connection (int);
|
2003-11-07 21:57:51 -05:00
|
|
|
|
|
|
|
enum {
|
|
|
|
ENDPOINT_LOCAL,
|
|
|
|
ENDPOINT_PEER
|
|
|
|
};
|
2005-06-22 15:38:10 -04:00
|
|
|
bool socket_ip_address (int, ip_address *, int);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
bool retryable_socket_connect_error (int);
|
2003-11-13 15:26:18 -05:00
|
|
|
|
2003-11-05 20:12:03 -05:00
|
|
|
/* Flags for select_fd's WAIT_FOR argument. */
|
|
|
|
enum {
|
|
|
|
WAIT_FOR_READ = 1,
|
|
|
|
WAIT_FOR_WRITE = 2
|
|
|
|
};
|
2005-06-19 18:34:58 -04:00
|
|
|
int select_fd (int, double, int);
|
2005-06-22 15:38:10 -04:00
|
|
|
bool test_socket_open (int);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2005-07-03 17:20:33 -04:00
|
|
|
struct transport_implementation {
|
|
|
|
int (*reader) (int, char *, int, void *);
|
|
|
|
int (*writer) (int, char *, int, void *);
|
|
|
|
int (*poller) (int, double, int, void *);
|
|
|
|
int (*peeker) (int, char *, int, void *);
|
|
|
|
const char *(*errstr) (int, void *);
|
|
|
|
void (*closer) (int, void *);
|
|
|
|
};
|
2003-11-20 10:19:59 -05:00
|
|
|
|
2005-07-03 17:20:33 -04:00
|
|
|
void fd_register_transport (int, struct transport_implementation *, void *);
|
|
|
|
void *fd_transport_context (int);
|
2005-06-19 18:34:58 -04:00
|
|
|
int fd_read (int, char *, int, double);
|
|
|
|
int fd_write (int, char *, int, double);
|
|
|
|
int fd_peek (int, char *, int, double);
|
2005-07-03 17:20:33 -04:00
|
|
|
const char *fd_errstr (int);
|
2005-06-19 18:34:58 -04:00
|
|
|
void fd_close (int);
|
2005-07-03 17:20:33 -04:00
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
#endif /* CONNECT_H */
|