mirror of
https://github.com/curl/curl.git
synced 2024-12-15 06:40:09 +08:00
71b7e01610
Refactoring of connection setup and happy eyeballing. Move nghttp2. ngtcp2, quiche and msh3 into connection filters. - eyeballing cfilter that uses sub-filters for performing parallel connects - socket cfilter for all transport types, including QUIC - QUIC implementations in cfilter, can now participate in eyeballing - connection setup is more dynamic in order to adapt to what filter did really connect. Relevant to see if a SSL filter needs to be added or if SSL has already been provided - HTTP/3 test cases similar to HTTP/2 - multiuse of parallel transfers for HTTP/3, tested for ngtcp2 and quiche - Fix for data attach/detach in VTLS filters that could lead to crashes during parallel transfers. - Eliminating setup() methods in cfilters, no longer needed. - Improving Curl_conn_is_alive() to replace Curl_connalive() and integrated ssl alive checks into cfilter. - Adding CF_CNTRL_CONN_INFO_UPDATE to tell filters to update connection into and persist it at the easy handle. - Several more cfilter related cleanups and moves: - stream_weigth and dependency info is now wrapped in struct Curl_data_priority - Curl_data_priority members depend is available in HTTP2|HTTP3 - Curl_data_priority members depend on NGHTTP2 support - handling init/reset/cleanup of priority part of url.c - data->state.priority same struct, but shallow copy for compares only - PROTOPT_STREAM has been removed - Curl_conn_is_mulitplex() now available to check on capability - Adding query method to connection filters. - ngtcp2+quiche: implementing query for max concurrent transfers. - Adding is_alive and keep_alive cfilter methods. Adding DATA_SETUP event. - setting keepalive timestamp on connect - DATA_SETUP is called after the connection has been completely setup (but may not connected yet) to allow filters to initialize data members they use. - there is no socket to be had with msh3, it is unclear how select shall work - manual test via "curl --http3 https://curl.se" fail with "empty reply from server". - Various socket/conn related cleanups: - Curl_socket is now Curl_socket_open and in cf-socket.c - Curl_closesocket is now Curl_socket_close and in cf-socket.c - Curl_ssl_use has been replaced with Cur_conn_is_ssl - Curl_conn_tcp_accepted_set has been split into Curl_conn_tcp_listen_set and Curl_conn_tcp_accepted_set with a clearer purpose Closes #10141
632 lines
16 KiB
C
632 lines
16 KiB
C
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* This software is licensed as described in the file COPYING, which
|
|
* you should have received as part of this distribution. The terms
|
|
* are also available at https://curl.se/docs/copyright.html.
|
|
*
|
|
* 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
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
* SPDX-License-Identifier: curl
|
|
*
|
|
***************************************************************************/
|
|
|
|
#include "curl_setup.h"
|
|
|
|
#include "urldata.h"
|
|
#include "strerror.h"
|
|
#include "cfilters.h"
|
|
#include "connect.h"
|
|
#include "url.h" /* for Curl_safefree() */
|
|
#include "sendf.h"
|
|
#include "sockaddr.h" /* required for Curl_sockaddr_storage */
|
|
#include "multiif.h"
|
|
#include "progress.h"
|
|
#include "warnless.h"
|
|
|
|
/* The last 3 #include files should be in this order */
|
|
#include "curl_printf.h"
|
|
#include "curl_memory.h"
|
|
#include "memdebug.h"
|
|
|
|
#ifndef ARRAYSIZE
|
|
#define ARRAYSIZE(A) (sizeof(A)/sizeof((A)[0]))
|
|
#endif
|
|
|
|
#define DEBUG_CF 0
|
|
|
|
#if DEBUG_CF
|
|
#define CF_DEBUGF(x) x
|
|
#else
|
|
#define CF_DEBUGF(x) do { } while(0)
|
|
#endif
|
|
|
|
void Curl_cf_def_destroy_this(struct Curl_cfilter *cf, struct Curl_easy *data)
|
|
{
|
|
(void)cf;
|
|
(void)data;
|
|
}
|
|
|
|
void Curl_cf_def_close(struct Curl_cfilter *cf, struct Curl_easy *data)
|
|
{
|
|
cf->connected = FALSE;
|
|
if(cf->next)
|
|
cf->next->cft->close(cf->next, data);
|
|
}
|
|
|
|
CURLcode Curl_cf_def_connect(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
bool blocking, bool *done)
|
|
{
|
|
CURLcode result;
|
|
|
|
if(cf->connected) {
|
|
*done = TRUE;
|
|
return CURLE_OK;
|
|
}
|
|
if(cf->next) {
|
|
result = cf->next->cft->connect(cf->next, data, blocking, done);
|
|
if(!result && *done) {
|
|
cf->connected = TRUE;
|
|
}
|
|
return result;
|
|
}
|
|
*done = FALSE;
|
|
return CURLE_FAILED_INIT;
|
|
}
|
|
|
|
void Curl_cf_def_get_host(struct Curl_cfilter *cf, struct Curl_easy *data,
|
|
const char **phost, const char **pdisplay_host,
|
|
int *pport)
|
|
{
|
|
if(cf->next)
|
|
cf->next->cft->get_host(cf->next, data, phost, pdisplay_host, pport);
|
|
else {
|
|
*phost = cf->conn->host.name;
|
|
*pdisplay_host = cf->conn->host.dispname;
|
|
*pport = cf->conn->port;
|
|
}
|
|
}
|
|
|
|
int Curl_cf_def_get_select_socks(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
curl_socket_t *socks)
|
|
{
|
|
return cf->next?
|
|
cf->next->cft->get_select_socks(cf->next, data, socks) : 0;
|
|
}
|
|
|
|
bool Curl_cf_def_data_pending(struct Curl_cfilter *cf,
|
|
const struct Curl_easy *data)
|
|
{
|
|
return cf->next?
|
|
cf->next->cft->has_data_pending(cf->next, data) : FALSE;
|
|
}
|
|
|
|
ssize_t Curl_cf_def_send(struct Curl_cfilter *cf, struct Curl_easy *data,
|
|
const void *buf, size_t len, CURLcode *err)
|
|
{
|
|
return cf->next?
|
|
cf->next->cft->do_send(cf->next, data, buf, len, err) :
|
|
CURLE_RECV_ERROR;
|
|
}
|
|
|
|
ssize_t Curl_cf_def_recv(struct Curl_cfilter *cf, struct Curl_easy *data,
|
|
char *buf, size_t len, CURLcode *err)
|
|
{
|
|
return cf->next?
|
|
cf->next->cft->do_recv(cf->next, data, buf, len, err) :
|
|
CURLE_SEND_ERROR;
|
|
}
|
|
|
|
bool Curl_cf_def_conn_is_alive(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data)
|
|
{
|
|
return cf->next?
|
|
cf->next->cft->is_alive(cf->next, data) :
|
|
FALSE; /* pessimistic in absence of data */
|
|
}
|
|
|
|
CURLcode Curl_cf_def_conn_keep_alive(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data)
|
|
{
|
|
return cf->next?
|
|
cf->next->cft->keep_alive(cf->next, data) :
|
|
CURLE_OK;
|
|
}
|
|
|
|
CURLcode Curl_cf_def_query(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
int query, int *pres1, void **pres2)
|
|
{
|
|
return cf->next?
|
|
cf->next->cft->query(cf->next, data, query, pres1, pres2) :
|
|
CURLE_UNKNOWN_OPTION;
|
|
}
|
|
|
|
void Curl_conn_cf_discard_chain(struct Curl_cfilter **pcf,
|
|
struct Curl_easy *data)
|
|
{
|
|
struct Curl_cfilter *cfn, *cf = *pcf;
|
|
|
|
if(cf) {
|
|
*pcf = NULL;
|
|
while(cf) {
|
|
cfn = cf->next;
|
|
/* prevent destroying filter to mess with its sub-chain, since
|
|
* we have the reference now and will call destroy on it.
|
|
*/
|
|
cf->next = NULL;
|
|
cf->cft->destroy(cf, data);
|
|
free(cf);
|
|
cf = cfn;
|
|
}
|
|
}
|
|
}
|
|
|
|
void Curl_conn_cf_discard_all(struct Curl_easy *data,
|
|
struct connectdata *conn, int index)
|
|
{
|
|
Curl_conn_cf_discard_chain(&conn->cfilter[index], data);
|
|
}
|
|
|
|
void Curl_conn_close(struct Curl_easy *data, int index)
|
|
{
|
|
struct Curl_cfilter *cf;
|
|
|
|
DEBUGASSERT(data->conn);
|
|
/* it is valid to call that without filters being present */
|
|
cf = data->conn->cfilter[index];
|
|
if(cf) {
|
|
cf->cft->close(cf, data);
|
|
}
|
|
}
|
|
|
|
ssize_t Curl_conn_recv(struct Curl_easy *data, int num, char *buf,
|
|
size_t len, CURLcode *code)
|
|
{
|
|
struct Curl_cfilter *cf;
|
|
ssize_t nread;
|
|
|
|
DEBUGASSERT(data);
|
|
DEBUGASSERT(data->conn);
|
|
cf = data->conn->cfilter[num];
|
|
while(cf && !cf->connected) {
|
|
cf = cf->next;
|
|
}
|
|
if(cf) {
|
|
nread = cf->cft->do_recv(cf, data, buf, len, code);
|
|
CF_DEBUGF(infof(data, "Curl_conn_recv(handle=%p, index=%d)"
|
|
"-> %ld, err=%d", data, num, nread, *code));
|
|
return nread;
|
|
}
|
|
failf(data, CMSGI(data->conn, num, "recv: no filter connected"));
|
|
*code = CURLE_FAILED_INIT;
|
|
return -1;
|
|
}
|
|
|
|
ssize_t Curl_conn_send(struct Curl_easy *data, int num,
|
|
const void *mem, size_t len, CURLcode *code)
|
|
{
|
|
struct Curl_cfilter *cf;
|
|
ssize_t nwritten;
|
|
|
|
DEBUGASSERT(data);
|
|
DEBUGASSERT(data->conn);
|
|
cf = data->conn->cfilter[num];
|
|
while(cf && !cf->connected) {
|
|
cf = cf->next;
|
|
}
|
|
if(cf) {
|
|
nwritten = cf->cft->do_send(cf, data, mem, len, code);
|
|
CF_DEBUGF(infof(data, "Curl_conn_send(handle=%p, index=%d, len=%ld)"
|
|
" -> %ld, err=%d", data, num, len, nwritten, *code));
|
|
return nwritten;
|
|
}
|
|
failf(data, CMSGI(data->conn, num, "send: no filter connected"));
|
|
DEBUGASSERT(0);
|
|
*code = CURLE_FAILED_INIT;
|
|
return -1;
|
|
}
|
|
|
|
CURLcode Curl_cf_create(struct Curl_cfilter **pcf,
|
|
const struct Curl_cftype *cft,
|
|
void *ctx)
|
|
{
|
|
struct Curl_cfilter *cf;
|
|
CURLcode result = CURLE_OUT_OF_MEMORY;
|
|
|
|
DEBUGASSERT(cft);
|
|
cf = calloc(sizeof(*cf), 1);
|
|
if(!cf)
|
|
goto out;
|
|
|
|
cf->cft = cft;
|
|
cf->ctx = ctx;
|
|
result = CURLE_OK;
|
|
out:
|
|
*pcf = cf;
|
|
return result;
|
|
}
|
|
|
|
void Curl_conn_cf_add(struct Curl_easy *data,
|
|
struct connectdata *conn,
|
|
int index,
|
|
struct Curl_cfilter *cf)
|
|
{
|
|
(void)data;
|
|
DEBUGASSERT(conn);
|
|
DEBUGASSERT(!cf->conn);
|
|
DEBUGASSERT(!cf->next);
|
|
|
|
cf->next = conn->cfilter[index];
|
|
cf->conn = conn;
|
|
cf->sockindex = index;
|
|
conn->cfilter[index] = cf;
|
|
CF_DEBUGF(infof(data, CFMSG(cf, "added")));
|
|
}
|
|
|
|
void Curl_conn_cf_insert_after(struct Curl_cfilter *cf_at,
|
|
struct Curl_cfilter *cf_new)
|
|
{
|
|
struct Curl_cfilter *tail, **pnext;
|
|
|
|
DEBUGASSERT(cf_at);
|
|
DEBUGASSERT(cf_new);
|
|
DEBUGASSERT(!cf_new->conn);
|
|
|
|
tail = cf_at->next;
|
|
cf_at->next = cf_new;
|
|
do {
|
|
cf_new->conn = cf_at->conn;
|
|
cf_new->sockindex = cf_at->sockindex;
|
|
pnext = &cf_new->next;
|
|
cf_new = cf_new->next;
|
|
} while(cf_new);
|
|
*pnext = tail;
|
|
}
|
|
|
|
void Curl_conn_cf_discard(struct Curl_cfilter *cf, struct Curl_easy *data)
|
|
{
|
|
struct Curl_cfilter **pprev = &cf->conn->cfilter[cf->sockindex];
|
|
|
|
/* remove from chain if still in there */
|
|
DEBUGASSERT(cf);
|
|
while (*pprev) {
|
|
if (*pprev == cf) {
|
|
*pprev = cf->next;
|
|
break;
|
|
}
|
|
pprev = &((*pprev)->next);
|
|
}
|
|
cf->cft->destroy(cf, data);
|
|
free(cf);
|
|
}
|
|
|
|
CURLcode Curl_conn_cf_connect(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
bool blocking, bool *done)
|
|
{
|
|
if(cf)
|
|
return cf->cft->connect(cf, data, blocking, done);
|
|
return CURLE_FAILED_INIT;
|
|
}
|
|
|
|
void Curl_conn_cf_close(struct Curl_cfilter *cf, struct Curl_easy *data)
|
|
{
|
|
if(cf)
|
|
cf->cft->close(cf, data);
|
|
}
|
|
|
|
int Curl_conn_cf_get_select_socks(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
curl_socket_t *socks)
|
|
{
|
|
if(cf)
|
|
return cf->cft->get_select_socks(cf, data, socks);
|
|
return 0;
|
|
}
|
|
|
|
ssize_t Curl_conn_cf_send(struct Curl_cfilter *cf, struct Curl_easy *data,
|
|
const void *buf, size_t len, CURLcode *err)
|
|
{
|
|
if(cf)
|
|
return cf->cft->do_send(cf, data, buf, len, err);
|
|
*err = CURLE_SEND_ERROR;
|
|
return -1;
|
|
}
|
|
|
|
ssize_t Curl_conn_cf_recv(struct Curl_cfilter *cf, struct Curl_easy *data,
|
|
char *buf, size_t len, CURLcode *err)
|
|
{
|
|
if(cf)
|
|
return cf->cft->do_recv(cf, data, buf, len, err);
|
|
*err = CURLE_RECV_ERROR;
|
|
return -1;
|
|
}
|
|
|
|
CURLcode Curl_conn_connect(struct Curl_easy *data,
|
|
int sockindex,
|
|
bool blocking,
|
|
bool *done)
|
|
{
|
|
struct Curl_cfilter *cf;
|
|
CURLcode result = CURLE_OK;
|
|
|
|
DEBUGASSERT(data);
|
|
DEBUGASSERT(data->conn);
|
|
|
|
cf = data->conn->cfilter[sockindex];
|
|
DEBUGASSERT(cf);
|
|
*done = cf->connected;
|
|
if(!*done) {
|
|
result = cf->cft->connect (cf, data, blocking, done);
|
|
if(!result && *done) {
|
|
data->conn->keepalive = Curl_now();
|
|
}
|
|
}
|
|
|
|
#ifdef DEBUGBUILD
|
|
if(result) {
|
|
CF_DEBUGF(infof(data, DMSGI(data, sockindex, "connect()-> %d, done=%d"),
|
|
result, *done));
|
|
}
|
|
else if(!*done) {
|
|
while(cf->next && !cf->next->connected)
|
|
cf = cf->next;
|
|
CF_DEBUGF(infof(data, DMSGI(data, sockindex, "connect()-> waiting for %s"),
|
|
cf->cft->name));
|
|
}
|
|
#endif
|
|
return result;
|
|
}
|
|
|
|
bool Curl_conn_is_connected(struct connectdata *conn, int sockindex)
|
|
{
|
|
struct Curl_cfilter *cf;
|
|
|
|
cf = conn->cfilter[sockindex];
|
|
return cf && cf->connected;
|
|
}
|
|
|
|
bool Curl_conn_is_ip_connected(struct Curl_easy *data, int sockindex)
|
|
{
|
|
struct Curl_cfilter *cf;
|
|
|
|
cf = data->conn->cfilter[sockindex];
|
|
while(cf) {
|
|
if(cf->connected)
|
|
return TRUE;
|
|
if(cf->cft->flags & CF_TYPE_IP_CONNECT)
|
|
return FALSE;
|
|
cf = cf->next;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
bool Curl_conn_is_ssl(struct connectdata *conn, int sockindex)
|
|
{
|
|
struct Curl_cfilter *cf = conn? conn->cfilter[sockindex] : NULL;
|
|
|
|
for(; cf; cf = cf->next) {
|
|
if(cf->cft->flags & CF_TYPE_SSL)
|
|
return TRUE;
|
|
if(cf->cft->flags & CF_TYPE_IP_CONNECT)
|
|
return FALSE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
bool Curl_conn_is_multiplex(struct connectdata *conn, int sockindex)
|
|
{
|
|
struct Curl_cfilter *cf = conn? conn->cfilter[sockindex] : NULL;
|
|
|
|
for(; cf; cf = cf->next) {
|
|
if(cf->cft->flags & CF_TYPE_MULTIPLEX)
|
|
return TRUE;
|
|
if(cf->cft->flags & CF_TYPE_IP_CONNECT
|
|
|| cf->cft->flags & CF_TYPE_SSL)
|
|
return FALSE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
bool Curl_conn_data_pending(struct Curl_easy *data, int sockindex)
|
|
{
|
|
struct Curl_cfilter *cf;
|
|
|
|
(void)data;
|
|
DEBUGASSERT(data);
|
|
DEBUGASSERT(data->conn);
|
|
if(Curl_recv_has_postponed_data(data->conn, sockindex))
|
|
return TRUE;
|
|
|
|
cf = data->conn->cfilter[sockindex];
|
|
while(cf && !cf->connected) {
|
|
cf = cf->next;
|
|
}
|
|
if(cf) {
|
|
return cf->cft->has_data_pending(cf, data);
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
int Curl_conn_get_select_socks(struct Curl_easy *data, int sockindex,
|
|
curl_socket_t *socks)
|
|
{
|
|
struct Curl_cfilter *cf;
|
|
|
|
DEBUGASSERT(data);
|
|
DEBUGASSERT(data->conn);
|
|
cf = data->conn->cfilter[sockindex];
|
|
|
|
/* if the next one is not yet connected, that's the one we want */
|
|
while(cf && cf->next && !cf->next->connected)
|
|
cf = cf->next;
|
|
if(cf) {
|
|
return cf->cft->get_select_socks(cf, data, socks);
|
|
}
|
|
return GETSOCK_BLANK;
|
|
}
|
|
|
|
void Curl_conn_get_host(struct Curl_easy *data, int sockindex,
|
|
const char **phost, const char **pdisplay_host,
|
|
int *pport)
|
|
{
|
|
struct Curl_cfilter *cf;
|
|
|
|
DEBUGASSERT(data->conn);
|
|
cf = data->conn->cfilter[sockindex];
|
|
if(cf) {
|
|
cf->cft->get_host(cf, data, phost, pdisplay_host, pport);
|
|
}
|
|
else {
|
|
/* Some filter ask during shutdown for this, mainly for debugging
|
|
* purposes. We hand out the defaults, however this is not always
|
|
* accurate, as the connection might be tunneled, etc. But all that
|
|
* state is already gone here. */
|
|
*phost = data->conn->host.name;
|
|
*pdisplay_host = data->conn->host.dispname;
|
|
*pport = data->conn->remote_port;
|
|
}
|
|
}
|
|
|
|
CURLcode Curl_cf_def_cntrl(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
int event, int arg1, void *arg2)
|
|
{
|
|
(void)cf;
|
|
(void)data;
|
|
(void)event;
|
|
(void)arg1;
|
|
(void)arg2;
|
|
return CURLE_OK;
|
|
}
|
|
|
|
CURLcode Curl_conn_cf_cntrl(struct Curl_cfilter *cf,
|
|
struct Curl_easy *data,
|
|
bool ignore_result,
|
|
int event, int arg1, void *arg2)
|
|
{
|
|
CURLcode result = CURLE_OK;
|
|
|
|
for(; cf; cf = cf->next) {
|
|
if(Curl_cf_def_cntrl == cf->cft->cntrl)
|
|
continue;
|
|
result = cf->cft->cntrl(cf, data, event, arg1, arg2);
|
|
if(!ignore_result && result)
|
|
break;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
static CURLcode cf_cntrl_all(struct connectdata *conn,
|
|
struct Curl_easy *data,
|
|
bool ignore_result,
|
|
int event, int arg1, void *arg2)
|
|
{
|
|
CURLcode result = CURLE_OK;
|
|
size_t i;
|
|
|
|
for(i = 0; i < ARRAYSIZE(conn->cfilter); ++i) {
|
|
result = Curl_conn_cf_cntrl(conn->cfilter[i], data, ignore_result,
|
|
event, arg1, arg2);
|
|
if(!ignore_result && result)
|
|
break;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
void Curl_conn_ev_data_attach(struct connectdata *conn,
|
|
struct Curl_easy *data)
|
|
{
|
|
cf_cntrl_all(conn, data, TRUE, CF_CTRL_DATA_ATTACH, 0, NULL);
|
|
}
|
|
|
|
void Curl_conn_ev_data_detach(struct connectdata *conn,
|
|
struct Curl_easy *data)
|
|
{
|
|
cf_cntrl_all(conn, data, TRUE, CF_CTRL_DATA_DETACH, 0, NULL);
|
|
}
|
|
|
|
CURLcode Curl_conn_ev_data_setup(struct Curl_easy *data)
|
|
{
|
|
return cf_cntrl_all(data->conn, data, FALSE,
|
|
CF_CTRL_DATA_SETUP, 0, NULL);
|
|
}
|
|
|
|
CURLcode Curl_conn_ev_data_idle(struct Curl_easy *data)
|
|
{
|
|
return cf_cntrl_all(data->conn, data, FALSE,
|
|
CF_CTRL_DATA_IDLE, 0, NULL);
|
|
}
|
|
|
|
/**
|
|
* Notify connection filters that the transfer represented by `data`
|
|
* is donw with sending data (e.g. has uploaded everything).
|
|
*/
|
|
void Curl_conn_ev_data_done_send(struct Curl_easy *data)
|
|
{
|
|
cf_cntrl_all(data->conn, data, TRUE, CF_CTRL_DATA_DONE_SEND, 0, NULL);
|
|
}
|
|
|
|
/**
|
|
* Notify connection filters that the transfer represented by `data`
|
|
* is finished - eventually premature, e.g. before being complete.
|
|
*/
|
|
void Curl_conn_ev_data_done(struct Curl_easy *data, bool premature)
|
|
{
|
|
cf_cntrl_all(data->conn, data, TRUE, CF_CTRL_DATA_DONE, premature, NULL);
|
|
}
|
|
|
|
CURLcode Curl_conn_ev_data_pause(struct Curl_easy *data, bool do_pause)
|
|
{
|
|
return cf_cntrl_all(data->conn, data, FALSE,
|
|
CF_CTRL_DATA_PAUSE, do_pause, NULL);
|
|
}
|
|
|
|
void Curl_conn_ev_update_info(struct Curl_easy *data,
|
|
struct connectdata *conn)
|
|
{
|
|
cf_cntrl_all(conn, data, TRUE, CF_CTRL_CONN_INFO_UPDATE, 0, NULL);
|
|
}
|
|
|
|
bool Curl_conn_is_alive(struct Curl_easy *data, struct connectdata *conn)
|
|
{
|
|
struct Curl_cfilter *cf = conn->cfilter[FIRSTSOCKET];
|
|
return !cf->conn->bits.close && cf && cf->cft->is_alive(cf, data);
|
|
}
|
|
|
|
CURLcode Curl_conn_keep_alive(struct Curl_easy *data,
|
|
struct connectdata *conn,
|
|
int sockindex)
|
|
{
|
|
struct Curl_cfilter *cf = conn->cfilter[sockindex];
|
|
return cf? cf->cft->keep_alive(cf, data) : CURLE_OK;
|
|
}
|
|
|
|
size_t Curl_conn_get_max_concurrent(struct Curl_easy *data,
|
|
struct connectdata *conn,
|
|
int sockindex)
|
|
{
|
|
CURLcode result;
|
|
int n = 0;
|
|
|
|
struct Curl_cfilter *cf = conn->cfilter[sockindex];
|
|
result = cf? cf->cft->query(cf, data, CF_QUERY_MAX_CONCURRENT,
|
|
&n, NULL) : CURLE_UNKNOWN_OPTION;
|
|
return (result || n <= 0)? 1 : (size_t)n;
|
|
}
|
|
|