mirror of
https://github.com/curl/curl.git
synced 2026-08-25 10:53:37 +03:00
Alexander Krasnostavsky's FTP third party transfer (proxy) support
This commit is contained in:
parent
7dcb102733
commit
ea81dd9e2e
8 changed files with 583 additions and 230 deletions
|
|
@ -740,7 +740,8 @@ CURLcode add_buffer_send(send_buffer *in,
|
|||
|
||||
if(conn->data->set.verbose)
|
||||
/* this data _may_ contain binary stuff */
|
||||
Curl_debug(conn->data, CURLINFO_HEADER_OUT, ptr, amount);
|
||||
Curl_debug(conn->data, CURLINFO_HEADER_OUT, ptr, amount,
|
||||
conn->host.dispname);
|
||||
|
||||
*bytes_written += amount;
|
||||
|
||||
|
|
@ -1044,7 +1045,8 @@ CURLcode Curl_ConnectHTTPProxyTunnel(struct connectdata *conn,
|
|||
|
||||
/* output debug output if that is requested */
|
||||
if(data->set.verbose)
|
||||
Curl_debug(data, CURLINFO_HEADER_IN, line_start, perline);
|
||||
Curl_debug(data, CURLINFO_HEADER_IN, line_start, perline,
|
||||
conn->host.dispname);
|
||||
|
||||
/* send the header to the callback */
|
||||
writetype = CLIENTWRITE_HEADER;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue