lib: remove conn->data uses

Closes #6499
This commit is contained in:
Patrick Monnerat 2021-01-21 00:38:52 +01:00 committed by Daniel Stenberg
parent 14e075d1a7
commit ecb13416e3
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
19 changed files with 99 additions and 96 deletions

View file

@ -1077,10 +1077,10 @@ CURLcode Curl_build_unencoding_stack(struct Curl_easy *data,
#else
/* Stubs for builds without HTTP. */
CURLcode Curl_build_unencoding_stack(struct connectdata *conn,
CURLcode Curl_build_unencoding_stack(struct Curl_easy *data,
const char *enclist, int maybechunked)
{
(void) conn;
(void) data;
(void) enclist;
(void) maybechunked;
return CURLE_NOT_BUILT_IN;
@ -1097,9 +1097,9 @@ CURLcode Curl_unencode_write(struct Curl_easy *data,
return CURLE_NOT_BUILT_IN;
}
void Curl_unencode_cleanup(struct connectdata *conn)
void Curl_unencode_cleanup(struct Curl_easy *data)
{
(void) conn;
(void) data;
}
char *Curl_all_content_encodings(void)