diff options
author | Daniel Stenberg <daniel@haxx.se> | 2013-08-02 12:12:20 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2013-08-03 22:51:35 +0200 |
commit | 204e340bcdf9cb42115d93ce06ee140c7eef90a8 (patch) | |
tree | fee1369d26d10abaafadf1443811a3cacd4630d2 /lib/urldata.h | |
parent | 37f2ba7e57f91a631d4208d7f329e230606804a3 (diff) | |
download | curl-204e340bcdf9cb42115d93ce06ee140c7eef90a8.tar.gz |
multi: remove the multi_pos struct field
Since Curl_one_easy is really a SessionHandle now, this indirection
doesn't exist anymore.
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index 2737fac40..4fa3ea19a 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -1645,9 +1645,6 @@ struct SessionHandle { struct Curl_multi *multi_easy; /* if non-NULL, points to the multi handle struct to which this "belongs" when used by the easy interface */ - struct Curl_one_easy *multi_pos; /* if non-NULL, points to its position - in multi controlling structure to assist - in removal. */ struct Curl_share *share; /* Share, handles global variable mutexing */ struct SingleRequest req; /* Request-specific data */ struct UserDefined set; /* values set by the libcurl user */ |