blob: 193dc639787f09cb027d719e5bb1187919f889b5 [file] [log] [blame]
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -07001#ifndef HEADER_CURL_CONNECT_H
2#define HEADER_CURL_CONNECT_H
Kristian Monsen5ab50182010-05-14 18:53:44 +01003/***************************************************************************
4 * _ _ ____ _
5 * Project ___| | | | _ \| |
6 * / __| | | | |_) | |
7 * | (__| |_| | _ <| |___
8 * \___|\___/|_| \_\_____|
9 *
Elliott Hughes82be86d2017-09-20 17:00:17 -070010 * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
Kristian Monsen5ab50182010-05-14 18:53:44 +010011 *
12 * This software is licensed as described in the file COPYING, which
13 * you should have received as part of this distribution. The terms
Alex Deymod15eaac2016-06-28 14:49:26 -070014 * are also available at https://curl.haxx.se/docs/copyright.html.
Kristian Monsen5ab50182010-05-14 18:53:44 +010015 *
16 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17 * copies of the Software, and permit persons to whom the Software is
18 * furnished to do so, under the terms of the COPYING file.
19 *
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
22 *
23 ***************************************************************************/
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070024#include "curl_setup.h"
Kristian Monsen5ab50182010-05-14 18:53:44 +010025
26#include "nonblock.h" /* for curlx_nonblock(), formerly Curl_nonblock() */
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070027#include "sockaddr.h"
Alex Deymo486467e2017-12-19 19:04:07 +010028#include "timeval.h"
Kristian Monsen5ab50182010-05-14 18:53:44 +010029
30CURLcode Curl_is_connected(struct connectdata *conn,
31 int sockindex,
32 bool *connected);
33
34CURLcode Curl_connecthost(struct connectdata *conn,
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070035 const struct Curl_dns_entry *host);
Kristian Monsen5ab50182010-05-14 18:53:44 +010036
37/* generic function that returns how much time there's left to run, according
38 to the timeouts set */
Alex Deymo486467e2017-12-19 19:04:07 +010039timediff_t Curl_timeleft(struct Curl_easy *data,
40 struct curltime *nowp,
41 bool duringconnect);
Kristian Monsen5ab50182010-05-14 18:53:44 +010042
43#define DEFAULT_CONNECT_TIMEOUT 300000 /* milliseconds == five minutes */
44
45/*
46 * Used to extract socket and connectdata struct for the most recent
Alex Deymoe3149cc2016-10-05 11:18:42 -070047 * transfer on the given Curl_easy.
Kristian Monsen5ab50182010-05-14 18:53:44 +010048 *
Lucas Eckels9bd90e62012-08-06 15:07:02 -070049 * The returned socket will be CURL_SOCKET_BAD in case of failure!
Kristian Monsen5ab50182010-05-14 18:53:44 +010050 */
Alex Deymoe3149cc2016-10-05 11:18:42 -070051curl_socket_t Curl_getconnectinfo(struct Curl_easy *data,
Lucas Eckels9bd90e62012-08-06 15:07:02 -070052 struct connectdata **connp);
Kristian Monsen5ab50182010-05-14 18:53:44 +010053
Elliott Hughes82be86d2017-09-20 17:00:17 -070054/*
55 * Check if a connection seems to be alive.
56 */
57bool Curl_connalive(struct connectdata *conn);
58
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070059#ifdef USE_WINSOCK
Kristian Monsen5ab50182010-05-14 18:53:44 +010060/* When you run a program that uses the Windows Sockets API, you may
61 experience slow performance when you copy data to a TCP server.
62
Alex Deymod15eaac2016-06-28 14:49:26 -070063 https://support.microsoft.com/kb/823764
Kristian Monsen5ab50182010-05-14 18:53:44 +010064
65 Work-around: Make the Socket Send Buffer Size Larger Than the Program Send
66 Buffer Size
67
68*/
69void Curl_sndbufset(curl_socket_t sockfd);
70#else
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070071#define Curl_sndbufset(y) Curl_nop_stmt
Kristian Monsen5ab50182010-05-14 18:53:44 +010072#endif
73
Lucas Eckels9bd90e62012-08-06 15:07:02 -070074void Curl_updateconninfo(struct connectdata *conn, curl_socket_t sockfd);
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070075void Curl_persistconninfo(struct connectdata *conn);
76int Curl_closesocket(struct connectdata *conn, curl_socket_t sock);
77
78/*
Elliott Hughescac39802018-04-27 16:19:43 -070079 * Get presentation format IP address and port from a sockaddr.
80 */
81bool Curl_getaddressinfo(struct sockaddr *sa, char *addr, long *port);
82
83/*
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070084 * The Curl_sockaddr_ex structure is basically libcurl's external API
85 * curl_sockaddr structure with enough space available to directly hold any
86 * protocol-specific address structures. The variable declared here will be
87 * used to pass / receive data to/from the fopensocket callback if this has
88 * been set, before that, it is initialized from parameters.
89 */
90struct Curl_sockaddr_ex {
91 int family;
92 int socktype;
93 int protocol;
94 unsigned int addrlen;
95 union {
96 struct sockaddr addr;
97 struct Curl_sockaddr_storage buff;
98 } _sa_ex_u;
99};
100#define sa_addr _sa_ex_u.addr
101
102/*
103 * Create a socket based on info from 'conn' and 'ai'.
104 *
105 * Fill in 'addr' and 'sockfd' accordingly if OK is returned. If the open
106 * socket callback is set, used that!
107 *
108 */
109CURLcode Curl_socket(struct connectdata *conn,
110 const Curl_addrinfo *ai,
111 struct Curl_sockaddr_ex *addr,
112 curl_socket_t *sockfd);
113
Alex Deymod15eaac2016-06-28 14:49:26 -0700114void Curl_tcpnodelay(struct connectdata *conn, curl_socket_t sockfd);
115
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700116/*
Elliott Hughescee03382017-06-23 12:17:18 -0700117 * Curl_conncontrol() marks the end of a connection/stream. The 'closeit'
118 * argument specifies if it is the end of a connection or a stream.
119 *
120 * For stream-based protocols (such as HTTP/2), a stream close will not cause
121 * a connection close. Other protocols will close the connection for both
122 * cases.
123 *
124 * It sets the bit.close bit to TRUE (with an explanation for debug builds),
125 * when the connection will close.
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700126 */
Elliott Hughescee03382017-06-23 12:17:18 -0700127
128#define CONNCTRL_KEEP 0 /* undo a marked closure */
129#define CONNCTRL_CONNECTION 1
130#define CONNCTRL_STREAM 2
131
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700132void Curl_conncontrol(struct connectdata *conn,
Elliott Hughescee03382017-06-23 12:17:18 -0700133 int closeit
Elliott Hughes82be86d2017-09-20 17:00:17 -0700134#if defined(DEBUGBUILD) && !defined(CURL_DISABLE_VERBOSE_STRINGS)
Elliott Hughescee03382017-06-23 12:17:18 -0700135 , const char *reason
136#endif
137 );
138
Elliott Hughes82be86d2017-09-20 17:00:17 -0700139#if defined(DEBUGBUILD) && !defined(CURL_DISABLE_VERBOSE_STRINGS)
Elliott Hughescee03382017-06-23 12:17:18 -0700140#define streamclose(x,y) Curl_conncontrol(x, CONNCTRL_STREAM, y)
141#define connclose(x,y) Curl_conncontrol(x, CONNCTRL_CONNECTION, y)
142#define connkeep(x,y) Curl_conncontrol(x, CONNCTRL_KEEP, y)
Elliott Hughes82be86d2017-09-20 17:00:17 -0700143#else /* if !DEBUGBUILD || CURL_DISABLE_VERBOSE_STRINGS */
Elliott Hughescee03382017-06-23 12:17:18 -0700144#define streamclose(x,y) Curl_conncontrol(x, CONNCTRL_STREAM)
145#define connclose(x,y) Curl_conncontrol(x, CONNCTRL_CONNECTION)
146#define connkeep(x,y) Curl_conncontrol(x, CONNCTRL_KEEP)
Kristian Monsen5ab50182010-05-14 18:53:44 +0100147#endif
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700148
Elliott Hughes82be86d2017-09-20 17:00:17 -0700149bool Curl_conn_data_pending(struct connectdata *conn, int sockindex);
150
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700151#endif /* HEADER_CURL_CONNECT_H */