2011-08-07 02:45:57 -04:00
|
|
|
#ifndef HEADER_CURL_CONNECT_H
|
|
|
|
#define HEADER_CURL_CONNECT_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-06-29 07:21:05 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2001-10-01 04:59:17 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2020-05-13 18:05:04 -04:00
|
|
|
* Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2001-10-01 04:59:17 -04:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-06-29 07:21:05 -04:00
|
|
|
*
|
2001-10-01 04:59:17 -04:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2001-10-01 04:59:17 -04:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2001-10-01 04:59:17 -04:00
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "nonblock.h" /* for curlx_nonblock(), formerly Curl_nonblock() */
|
|
|
|
#include "sockaddr.h"
|
2017-10-26 09:24:50 -04:00
|
|
|
#include "timeval.h"
|
2001-10-31 03:44:11 -05:00
|
|
|
|
2002-08-12 05:43:20 -04:00
|
|
|
CURLcode Curl_is_connected(struct connectdata *conn,
|
2004-06-29 07:21:05 -04:00
|
|
|
int sockindex,
|
2002-08-12 05:43:20 -04:00
|
|
|
bool *connected);
|
|
|
|
|
2001-10-01 04:59:17 -04:00
|
|
|
CURLcode Curl_connecthost(struct connectdata *conn,
|
2013-10-29 06:51:25 -04:00
|
|
|
const struct Curl_dns_entry *host);
|
2003-05-01 09:37:05 -04:00
|
|
|
|
2008-02-07 17:25:04 -05:00
|
|
|
/* generic function that returns how much time there's left to run, according
|
|
|
|
to the timeouts set */
|
2017-10-26 09:24:50 -04:00
|
|
|
timediff_t Curl_timeleft(struct Curl_easy *data,
|
|
|
|
struct curltime *nowp,
|
|
|
|
bool duringconnect);
|
2008-02-07 17:25:04 -05:00
|
|
|
|
2004-06-30 05:22:48 -04:00
|
|
|
#define DEFAULT_CONNECT_TIMEOUT 300000 /* milliseconds == five minutes */
|
|
|
|
|
2008-05-12 17:43:24 -04:00
|
|
|
/*
|
|
|
|
* Used to extract socket and connectdata struct for the most recent
|
2016-06-21 09:47:12 -04:00
|
|
|
* transfer on the given Curl_easy.
|
2008-05-12 17:43:24 -04:00
|
|
|
*
|
2010-09-05 18:02:54 -04:00
|
|
|
* The returned socket will be CURL_SOCKET_BAD in case of failure!
|
2008-05-12 17:43:24 -04:00
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
curl_socket_t Curl_getconnectinfo(struct Curl_easy *data,
|
2010-09-05 18:02:54 -04:00
|
|
|
struct connectdata **connp);
|
2009-05-07 16:00:44 -04:00
|
|
|
|
2019-08-30 05:29:55 -04:00
|
|
|
bool Curl_addr2string(struct sockaddr *sa, curl_socklen_t salen,
|
|
|
|
char *addr, long *port);
|
2019-08-08 17:13:57 -04:00
|
|
|
|
2016-12-06 17:39:08 -05:00
|
|
|
/*
|
|
|
|
* Check if a connection seems to be alive.
|
|
|
|
*/
|
|
|
|
bool Curl_connalive(struct connectdata *conn);
|
|
|
|
|
2011-08-07 02:45:57 -04:00
|
|
|
#ifdef USE_WINSOCK
|
2009-05-07 16:00:44 -04:00
|
|
|
/* When you run a program that uses the Windows Sockets API, you may
|
|
|
|
experience slow performance when you copy data to a TCP server.
|
|
|
|
|
2016-02-02 23:09:25 -05:00
|
|
|
https://support.microsoft.com/kb/823764
|
2009-05-07 16:00:44 -04:00
|
|
|
|
|
|
|
Work-around: Make the Socket Send Buffer Size Larger Than the Program Send
|
|
|
|
Buffer Size
|
|
|
|
|
|
|
|
*/
|
|
|
|
void Curl_sndbufset(curl_socket_t sockfd);
|
|
|
|
#else
|
2011-09-03 10:06:10 -04:00
|
|
|
#define Curl_sndbufset(y) Curl_nop_stmt
|
2009-05-07 16:00:44 -04:00
|
|
|
#endif
|
|
|
|
|
2010-06-07 10:53:31 -04:00
|
|
|
void Curl_updateconninfo(struct connectdata *conn, curl_socket_t sockfd);
|
2010-11-30 16:14:37 -05:00
|
|
|
void Curl_persistconninfo(struct connectdata *conn);
|
2011-05-16 17:46:43 -04:00
|
|
|
int Curl_closesocket(struct connectdata *conn, curl_socket_t sock);
|
2011-08-07 02:45:57 -04:00
|
|
|
|
2011-12-05 04:58:38 -05:00
|
|
|
/*
|
|
|
|
* The Curl_sockaddr_ex structure is basically libcurl's external API
|
|
|
|
* curl_sockaddr structure with enough space available to directly hold any
|
|
|
|
* protocol-specific address structures. The variable declared here will be
|
|
|
|
* used to pass / receive data to/from the fopensocket callback if this has
|
|
|
|
* been set, before that, it is initialized from parameters.
|
|
|
|
*/
|
|
|
|
struct Curl_sockaddr_ex {
|
|
|
|
int family;
|
|
|
|
int socktype;
|
|
|
|
int protocol;
|
|
|
|
unsigned int addrlen;
|
|
|
|
union {
|
|
|
|
struct sockaddr addr;
|
|
|
|
struct Curl_sockaddr_storage buff;
|
|
|
|
} _sa_ex_u;
|
|
|
|
};
|
|
|
|
#define sa_addr _sa_ex_u.addr
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a socket based on info from 'conn' and 'ai'.
|
|
|
|
*
|
|
|
|
* Fill in 'addr' and 'sockfd' accordingly if OK is returned. If the open
|
|
|
|
* socket callback is set, used that!
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
CURLcode Curl_socket(struct connectdata *conn,
|
2020-05-13 18:05:04 -04:00
|
|
|
const struct Curl_addrinfo *ai,
|
2011-12-05 04:58:38 -05:00
|
|
|
struct Curl_sockaddr_ex *addr,
|
|
|
|
curl_socket_t *sockfd);
|
|
|
|
|
2014-05-20 04:32:23 -04:00
|
|
|
/*
|
2016-08-11 08:00:23 -04:00
|
|
|
* Curl_conncontrol() marks the end of a connection/stream. The 'closeit'
|
|
|
|
* argument specifies if it is the end of a connection or a stream.
|
|
|
|
*
|
|
|
|
* For stream-based protocols (such as HTTP/2), a stream close will not cause
|
|
|
|
* a connection close. Other protocols will close the connection for both
|
|
|
|
* cases.
|
|
|
|
*
|
|
|
|
* It sets the bit.close bit to TRUE (with an explanation for debug builds),
|
|
|
|
* when the connection will close.
|
2014-05-20 04:32:23 -04:00
|
|
|
*/
|
|
|
|
|
2016-08-11 08:00:23 -04:00
|
|
|
#define CONNCTRL_KEEP 0 /* undo a marked closure */
|
|
|
|
#define CONNCTRL_CONNECTION 1
|
|
|
|
#define CONNCTRL_STREAM 2
|
2014-05-20 04:32:23 -04:00
|
|
|
|
2016-08-11 08:00:23 -04:00
|
|
|
void Curl_conncontrol(struct connectdata *conn,
|
|
|
|
int closeit
|
2017-03-30 04:14:34 -04:00
|
|
|
#if defined(DEBUGBUILD) && !defined(CURL_DISABLE_VERBOSE_STRINGS)
|
2016-08-11 08:00:23 -04:00
|
|
|
, const char *reason
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
|
2017-03-30 04:14:34 -04:00
|
|
|
#if defined(DEBUGBUILD) && !defined(CURL_DISABLE_VERBOSE_STRINGS)
|
2016-08-11 08:00:23 -04:00
|
|
|
#define streamclose(x,y) Curl_conncontrol(x, CONNCTRL_STREAM, y)
|
|
|
|
#define connclose(x,y) Curl_conncontrol(x, CONNCTRL_CONNECTION, y)
|
|
|
|
#define connkeep(x,y) Curl_conncontrol(x, CONNCTRL_KEEP, y)
|
2017-03-30 04:14:34 -04:00
|
|
|
#else /* if !DEBUGBUILD || CURL_DISABLE_VERBOSE_STRINGS */
|
2016-08-11 08:00:23 -04:00
|
|
|
#define streamclose(x,y) Curl_conncontrol(x, CONNCTRL_STREAM)
|
|
|
|
#define connclose(x,y) Curl_conncontrol(x, CONNCTRL_CONNECTION)
|
|
|
|
#define connkeep(x,y) Curl_conncontrol(x, CONNCTRL_KEEP)
|
2014-05-20 04:32:23 -04:00
|
|
|
#endif
|
|
|
|
|
2016-12-08 16:32:36 -05:00
|
|
|
bool Curl_conn_data_pending(struct connectdata *conn, int sockindex);
|
|
|
|
|
2011-08-07 02:45:57 -04:00
|
|
|
#endif /* HEADER_CURL_CONNECT_H */
|