mirror of
https://github.com/curl/curl.git
synced 2026-08-26 04:03:32 +03:00
internals: rename the SessionHandle struct to Curl_easy
This commit is contained in:
parent
9adf3c473a
commit
434f8d0389
124 changed files with 841 additions and 871 deletions
|
|
@ -67,7 +67,7 @@ zfree_cb(voidpf opaque, voidpf ptr)
|
|||
static CURLcode
|
||||
process_zlib_error(struct connectdata *conn, z_stream *z)
|
||||
{
|
||||
struct SessionHandle *data = conn->data;
|
||||
struct Curl_easy *data = conn->data;
|
||||
if(z->msg)
|
||||
failf (data, "Error while processing content unencoding: %s",
|
||||
z->msg);
|
||||
|
|
@ -425,7 +425,7 @@ Curl_unencode_gzip_write(struct connectdata *conn,
|
|||
|
||||
void Curl_unencode_cleanup(struct connectdata *conn)
|
||||
{
|
||||
struct SessionHandle *data = conn->data;
|
||||
struct Curl_easy *data = conn->data;
|
||||
struct SingleRequest *k = &data->req;
|
||||
z_stream *z = &k->z;
|
||||
if(k->zlib_init != ZLIB_UNINIT)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue