diff options
author | Daniel Stenberg <daniel@haxx.se> | 2013-08-03 00:03:52 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2013-08-03 22:51:35 +0200 |
commit | 784336deec2a674fc2ed8fe6f4af65ecf0cb8f35 (patch) | |
tree | b92cb558649e292973c4b1d1171b4356409f1800 | |
parent | eb41e8eebef1a308157fbbd171919dba28a1eca2 (diff) |
multi: remove data->state.current_conn struct field
Not needed
-rw-r--r-- | lib/easy.c | 2 | ||||
-rw-r--r-- | lib/url.c | 10 | ||||
-rw-r--r-- | lib/urldata.h | 2 |
3 files changed, 5 insertions, 9 deletions
diff --git a/lib/easy.c b/lib/easy.c index e1b74b070..041a831b1 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -812,7 +812,7 @@ CURLcode curl_easy_pause(CURL *curl, int action) do { chunklen = (tempsize > CURL_MAX_WRITE_SIZE)?CURL_MAX_WRITE_SIZE:tempsize; - result = Curl_client_write(data->state.current_conn, + result = Curl_client_write(data->easy_conn, temptype, tempwrite, chunklen); if(result) /* failures abort the loop at once */ @@ -2605,7 +2605,7 @@ CURLcode Curl_disconnect(struct connectdata *conn, bool dead_connection) } conn_free(conn); - data->state.current_conn = NULL; + Curl_speedinit(data); return CURLE_OK; @@ -5865,9 +5865,7 @@ CURLcode Curl_do_more(struct connectdata *conn, bool *completed) void Curl_reset_reqproto(struct connectdata *conn) { struct SessionHandle *data = conn->data; - if(data->state.proto.generic && data->state.current_conn != conn) { - free(data->state.proto.generic); - data->state.proto.generic = NULL; - } - data->state.current_conn = conn; + + Curl_safefree(data->state.proto.generic); + data->state.proto.generic = NULL; } diff --git a/lib/urldata.h b/lib/urldata.h index 43314d9a2..fb4f81c92 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -1295,8 +1295,6 @@ struct UrlState { struct POP3 *pop3; struct SMTP *smtp; } proto; - /* current user of this SessionHandle instance, or NULL */ - struct connectdata *current_conn; /* if true, force SSL connection retry (workaround for certain servers) */ bool ssl_connect_retry; |