diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-11-23 23:06:49 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-11-23 23:06:49 +0100 |
commit | 79db36459544c06657140449f4f445e1d7d17546 (patch) | |
tree | 131a16d2e06469dca276480b21ed55d75fe5735e | |
parent | 37cdc2a05c964a7212848149725e8072741f4213 (diff) | |
download | curl-79db36459544c06657140449f4f445e1d7d17546.tar.gz |
docs/INTERNALS: remove reference to Curl_sendf()bagder/rm-sendf-ref
The function has been removed from common usage. Also removed comment in
gopher.c that still referenced it.
Reported-by: Rikard Falkeborn
Fixes #6242
-rw-r--r-- | docs/INTERNALS.md | 8 | ||||
-rw-r--r-- | lib/gopher.c | 2 |
2 files changed, 3 insertions, 7 deletions
diff --git a/docs/INTERNALS.md b/docs/INTERNALS.md index 31f718c42..9bbf63161 100644 --- a/docs/INTERNALS.md +++ b/docs/INTERNALS.md @@ -236,11 +236,9 @@ multi_do() The functions are named after the protocols they handle. The protocol-specific functions of course deal with protocol-specific - negotiations and setup. They have access to the `Curl_sendf()` (from - `lib/sendf.c`) function to send printf-style formatted data to the remote - host and when they're ready to make the actual file transfer they call the - `Curl_setup_transfer()` function (in `lib/transfer.c`) to setup the - transfer and returns. + negotiations and setup. When they're ready to start the actual file + transfer they call the `Curl_setup_transfer()` function (in + `lib/transfer.c`) to setup the transfer and returns. If this DO function fails and the connection is being re-used, libcurl will then close this connection, setup a new connection and re-issue the DO diff --git a/lib/gopher.c b/lib/gopher.c index 1bbede67d..b101c0ab6 100644 --- a/lib/gopher.c +++ b/lib/gopher.c @@ -124,8 +124,6 @@ static CURLcode gopher_do(struct connectdata *conn, bool *done) sel_org = sel; } - /* We use Curl_write instead of Curl_sendf to make sure the entire buffer is - sent, which could be sizeable with long selectors. */ k = curlx_uztosz(len); for(;;) { |