mirror of
https://github.com/curl/curl.git
synced 2026-07-28 23:13:06 +03:00
parent
bfe54b0e88
commit
1087937992
12 changed files with 12 additions and 12 deletions
|
|
@ -590,7 +590,7 @@ CURLcode Curl_conn_ev_data_idle(struct Curl_easy *data)
|
|||
|
||||
/**
|
||||
* Notify connection filters that the transfer represented by `data`
|
||||
* is donw with sending data (e.g. has uploaded everything).
|
||||
* is done with sending data (e.g. has uploaded everything).
|
||||
*/
|
||||
void Curl_conn_ev_data_done_send(struct Curl_easy *data)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -451,7 +451,7 @@ CURLcode Curl_conn_ev_data_idle(struct Curl_easy *data);
|
|||
|
||||
/**
|
||||
* Notify connection filters that the transfer represented by `data`
|
||||
* is donw with sending data (e.g. has uploaded everything).
|
||||
* is done with sending data (e.g. has uploaded everything).
|
||||
*/
|
||||
void Curl_conn_ev_data_done_send(struct Curl_easy *data);
|
||||
|
||||
|
|
|
|||
|
|
@ -1352,7 +1352,7 @@ static CURLMcode multi_wait(struct Curl_multi *multi,
|
|||
/* 'nfds' is a 32 bit value and 'struct pollfd' is typically 8 bytes
|
||||
big, so at 2^29 sockets this value might wrap. When a process gets
|
||||
the capability to actually handle over 500 million sockets this
|
||||
calculation needs a integer overflow check. */
|
||||
calculation needs an integer overflow check. */
|
||||
ufds = malloc(nfds * sizeof(struct pollfd));
|
||||
if(!ufds)
|
||||
return CURLM_OUT_OF_MEMORY;
|
||||
|
|
|
|||
|
|
@ -805,7 +805,7 @@ static CURLcode rtsp_rtp_write_resp(struct Curl_easy *data,
|
|||
DEBUGF(infof(data, "rtsp_rtp_write_resp(len=%zu, in_header=%d, eos=%d)",
|
||||
blen, rtspc->in_header, is_eos));
|
||||
|
||||
/* If header parsing is not onging, extract RTP messages */
|
||||
/* If header parsing is not ongoing, extract RTP messages */
|
||||
if(!rtspc->in_header) {
|
||||
result = rtsp_filter_rtp(data, buf, blen, &consumed);
|
||||
if(result)
|
||||
|
|
|
|||
|
|
@ -2154,7 +2154,7 @@ CURLcode Curl_ossl_verifyhost(struct Curl_easy *data, struct connectdata *conn,
|
|||
#endif
|
||||
CURLcode result = CURLE_OK;
|
||||
bool dNSName = FALSE; /* if a dNSName field exists in the cert */
|
||||
bool iPAddress = FALSE; /* if a iPAddress field exists in the cert */
|
||||
bool iPAddress = FALSE; /* if an iPAddress field exists in the cert */
|
||||
size_t hostlen;
|
||||
|
||||
(void)conn;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue