mirror of
https://github.com/curl/curl.git
synced 2026-07-30 13:58:22 +03:00
parent
4c6b74e1e8
commit
217fd5b424
9 changed files with 11 additions and 11 deletions
|
|
@ -3182,7 +3182,7 @@ static CURLMcode multi_timeout(struct Curl_multi *multi,
|
|||
|
||||
/* splay the lowest to the bottom */
|
||||
multi->timetree = Curl_splay(tv_zero, multi->timetree);
|
||||
/* this will not return NULL from a non-emtpy tree, but some compilers
|
||||
/* this will not return NULL from a non-empty tree, but some compilers
|
||||
* are not convinced of that. Analyzers are hard. */
|
||||
*expire_time = multi->timetree ? multi->timetree->key : tv_zero;
|
||||
|
||||
|
|
|
|||
|
|
@ -303,7 +303,7 @@ static CURLMcode mev_pollset_diff(struct Curl_multi *multi,
|
|||
CURLMcode mresult;
|
||||
|
||||
/* The transfer `data` reports in `ps` the sockets it is interested
|
||||
* in and which combinatino of CURL_POLL_IN/CURL_POLL_OUT it wants
|
||||
* in and which combination of CURL_POLL_IN/CURL_POLL_OUT it wants
|
||||
* to have monitored for events.
|
||||
* There can be more than 1 transfer interested in the same socket
|
||||
* and 1 transfer might be interested in more than 1 socket.
|
||||
|
|
|
|||
|
|
@ -483,7 +483,7 @@ static CURLcode smtp_perform_upgrade_tls(struct Curl_easy *data,
|
|||
result, ssldone));
|
||||
if(!result && ssldone) {
|
||||
smtpc->ssldone = ssldone;
|
||||
/* perform EHLO now, changes smpt->state out of SMTP_UPGRADETLS */
|
||||
/* perform EHLO now, changes smtp->state out of SMTP_UPGRADETLS */
|
||||
result = smtp_perform_ehlo(data, smtpc);
|
||||
}
|
||||
out:
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ struct uint_tbl {
|
|||
void **rows; /* array of void* holding entries */
|
||||
Curl_uint_tbl_entry_dtor *entry_dtor;
|
||||
unsigned int nrows; /* length of `rows` array */
|
||||
unsigned int nentries; /* entris in table */
|
||||
unsigned int nentries; /* entries in table */
|
||||
unsigned int last_key_added; /* UINT_MAX or last key added */
|
||||
#ifdef DEBUGBUILD
|
||||
int init;
|
||||
|
|
|
|||
|
|
@ -1135,7 +1135,7 @@ static bool url_match_destination(struct connectdata *conn,
|
|||
/* We are in an IMAPS vs IMAP like case. We expect `conn` to have SSL */
|
||||
if(!Curl_conn_is_ssl(conn, FIRSTSOCKET)) {
|
||||
DEBUGF(infof(m->data,
|
||||
"Connection #%" FMT_OFF_T " has compatible protocol famiy, "
|
||||
"Connection #%" FMT_OFF_T " has compatible protocol family, "
|
||||
"but no SSL, no match", conn->connection_id));
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2370,7 +2370,7 @@ static CURLcode cf_osslq_query(struct Curl_cfilter *cf,
|
|||
#else
|
||||
*pres1 = 100;
|
||||
#endif
|
||||
CURL_TRC_CF(data, cf, "query max_conncurrent -> %d", *pres1);
|
||||
CURL_TRC_CF(data, cf, "query max_concurrent -> %d", *pres1);
|
||||
return CURLE_OK;
|
||||
}
|
||||
case CF_QUERY_CONNECT_REPLY_MS:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue